Skip to content

Instantly share code, notes, and snippets.

@baskaufs
Created September 12, 2023 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baskaufs/115dcd217462ef6e55b88389aeec41aa to your computer and use it in GitHub Desktop.
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
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