query-0fa05ccea9c3783c71bc010d9c969ea3

rq turtle/ttl

Creadores españoles que entran en el dominio público

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 ?ocupacionLabel (year(?date) as ?year) WHERE {
  ?autor wdt:P570 ?date .
  ?autor wdt:P27 wd:Q29 .
  ?autor wdt:P106 ?ocupacion .
  ?ocupacion wdt:P279* wd:Q482980 .
         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("?ocupacion") v4("?year") c5(["wd:Q29"]):::iri c10(["bd:serviceParam"]):::iri c8(["wd:Q482980"]):::iri c12(["#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 v2 --"wdt:P106"--> v3 v3 --"wdt:P279"--> c8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end bind2[/"year-from-dateTime(?date)"/] v1 --o bind2 bind2 --as--o v4