Skip to content

Instantly share code, notes, and snippets.

@ostephens
Created November 24, 2013 22:57
Show Gist options
  • Save ostephens/7633608 to your computer and use it in GitHub Desktop.
Save ostephens/7633608 to your computer and use it in GitHub Desktop.
SPARQL Query with 2 patterns - finds titles for books where Jane Austen is the dc:creator
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?title
WHERE {
?book dct:creator <http://bnb.data.bl.uk/id/person/AustenJane1775-1817> .
?book dct:title ?title
}
LIMIT 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment