Skip to content

Instantly share code, notes, and snippets.

@ostephens
Created November 24, 2013 23:27
Show Gist options
  • Save ostephens/7633907 to your computer and use it in GitHub Desktop.
Save ostephens/7633907 to your computer and use it in GitHub Desktop.
SPARQL query to find titles of books authored by person identified by http://viaf.org/viaf/102333412 (Jane Austen)
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT DISTINCT ?title
WHERE {
?person owl:sameAs <http://viaf.org/viaf/102333412> .
?book dct:creator ?person .
?book dct:title ?title
}
LIMIT 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment