query-3c88d306be2f9f703b4d0d3e43ab3ac9

rq turtle/ttl

Geboortedatum illustrator na 1951 + afbeelding

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 ?item ?itemLabel ?illustrator ?illustratorLabel ?dod ?image
WHERE 
{
  ?item wdt:P31 wd:Q3331189 . # version, edition, translation
  ?item wdt:P361 wd:Q106908720 . # golden age of illustration
  ?item wdt:P110 ?illustrator. #illustrator
  ?illustrator wdt:P570 ?dod . #date of death
  FILTER(?dod > "1951-01-01"^^xsd:dat). #date of death is after 1951
  ?item wdt:P18 ?image .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en language
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?dod"):::projected v3("?illustrator"):::projected v4("?image"):::projected v2("?item"):::projected c10(["bd:serviceParam"]):::iri c5(["wd:Q106908720"]):::iri c3(["wd:Q3331189"]):::iri c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?dod > s1951-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"wdt:P361"--> c5 v2 --"wdt:P110"--> v3 v3 --"wdt:P570"--> v1 v2 --"wdt:P18"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end