query-b7d124f18da25e611d531c6bd896c27b

rq turtle/ttl

Editatones de Perú Editatones de Perú Editatones de Perú Uitgeven in Peru

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT
  ?elemento
  ?elementoLabel
  ?tema_principalLabel
  ?año
  ?artículo
{
  ?elemento wdt:P31 wd:Q16022392;
            wdt:P17 wd:Q419;
            wdt:P921 ?tema_principal;
            wdt:P580 ?fecha_de_inicio.
  ?artículo schema:about ?elemento;
            schema:isPartOf <https://es.wikipedia.org/>.
  BIND(YEAR(?fecha_de_inicio) AS ?año)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
}
ORDER BY DESC(?año)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?artículo"):::projected v6("?año"):::projected v2("?elemento"):::projected v4("?fecha_de_inicio") v3("?tema_principal") c2(["wd:Q16022392"]):::iri c4(["wd:Q419"]):::iri c13(["es"]):::literal c11(["bd:serviceParam"]):::iri c9([https://es.wikipedia.org/]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P17"--> c4 v2 --"wdt:P921"--> v3 v2 --"wdt:P580"--> v4 v5 --"schema:about"--> v2 v5 --"schema:isPartOf"--> c9 bind0[/"year-from-dateTime(?fecha_de_inicio)"/] v4 --o bind0 bind0 --as--o v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end