Created
September 12, 2023 16:54
-
-
Save baskaufs/115dcd217462ef6e55b88389aeec41aa to your computer and use it in GitHub Desktop.
Construct triples linking Vanderbilt Art Gallery works Wikidata items to the class they are an instance of
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
construct { | |
?artwork wdt:P31 ?class. | |
?artwork rdfs:label ?label. | |
} | |
where { | |
?artwork wdt:P195 wd:Q18563658. | |
?artwork wdt:P31 ?class. | |
?artwork rdfs:label ?label. | |
filter(lang(?label)="en") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment