query-cefc938fcb5cd718dcca48a6d0465b50

rq turtle/ttl

Personas fallecidas en 1937

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?autor ?autorLabel (year(?date) as ?year) WHERE {
  ?autor wdt:P570 ?date .
  ?autor wdt:P27 wd:Q29 .
  FILTER (datatype(?date) = xsd:dateTime)
  FILTER (year(?date) = 1937)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en"  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?autor"):::projected v1("?date"):::projected v3("?year") c5(["wd:Q29"]):::iri c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["year-from-dateTime(?date) = '1937^^xsd:integer'"]] f0 --> v1 f1[["?date = 'xsd:dateTime'"]] f1 --> v1 v2 --"wdt:P570"--> v1 v2 --"wdt:P27"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind2[/"year-from-dateTime(?date)"/] v1 --o bind2 bind2 --as--o v3