query-1f9fc65929fa5be8d7afb6ab0886f568
title:Paintings by Russian artists from around the time of the Russian Revolution SELECT ?work ?workLabel ?artistLabel ?date ?datePrecision ?image WHERE { ?work wdt:P31 wd:Q3305213 # paintings ; wdt:P170 ?artist . ?artist wdt:P27 wd:Q34266. # artist's nationality: Russian Empire ?work p:P571/psv:P571 ?node . ?node wikibase:timeValue ?date ; # date of painting wikibase:timePrecision ?datePrecision # precision of date (e.g. day, month, year) BIND(YEAR(?date) as ?year) FILTER(?year > 1905) FILTER(?year < 1930) #specify date range FILTER (?datePrecision > 8) # known year .?work wdt:P18 ?image # only show art that Commons has an image for SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,ru,et,de,fr". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Paintings by Russian artists from around the time of the Russian Revolution
SELECT ?work ?workLabel ?artistLabel ?date ?datePrecision ?image WHERE {
?work wdt:P31 wd:Q3305213 # paintings
; wdt:P170 ?artist .
?artist wdt:P27 wd:Q34266. # artist's nationality: Russian Empire
?work p:P571/psv:P571 ?node .
?node wikibase:timeValue ?date ; # date of painting
wikibase:timePrecision ?datePrecision # precision of date (e.g. day, month, year)
BIND(YEAR(?date) as ?year) FILTER(?year > 1905) FILTER(?year < 1930) #specify date range
FILTER (?datePrecision > 8) # known year
.?work wdt:P18 ?image # only show art that Commons has an image for
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,ru,et,de,fr". }
}