Created
January 31, 2022 09:50
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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