query-10f5098d7607c1b7a2a2818f675eb11d
TODO
Use at
- https://query.wikidata.org/sparql
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 distinct ?person ?personLabel (sample(?died) as ?died) where {
?person wdt:P570 ?died.
?painting wdt:P170 ?person;
wdt:P31 wd:Q3305213.
filter (?died < "1950-01-01T00:00:00Z"^^xsd:dateTime && ?died >= "1949-01-01T00:00:00Z"^^xsd:dateTime)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} group by ?person ?personLabel ?died order by ?personLabel