Skip to content

Instantly share code, notes, and snippets.

@ncarboni
Created January 31, 2022 09:50
Show Gist options
  • Save ncarboni/58a803394fa7a3cf05b84718faca4802 to your computer and use it in GitHub Desktop.
Save ncarboni/58a803394fa7a3cf05b84718faca4802 to your computer and use it in GitHub Desktop.
Wikidata query used for retrieving visual elements with their images for the VC project
SELECT * WHERE {
?visual wdt:P31 ?type .
?type wdt:P279*|wdt:P31 wd:Q4502142 .
?visual wdt:P18 ?image ;
wdt:P571 ?time .
OPTIONAL {
?visual wdt:P170 ?creator
}
FILTER(?time > "1870-01-01T00:00:00"^^xsd:dateTime)
FILTER(?time < "1991-01-01T00:00:00"^^xsd:dateTime)
FILTER (?type != wd:Q422321)
FILTER (?type != wd:Q186516)
}
LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment