Created
November 24, 2013 22:27
-
-
Save ostephens/7633289 to your computer and use it in GitHub Desktop.
Example of using PREFIX of 'dct': Find 10 URIs where the BNB URI for Jane Austen is the subject and the predicate is dct:creator
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
PREFIX dct: <http://purl.org/dc/terms/> | |
SELECT * | |
WHERE { | |
?subject dct:creator <http://bnb.data.bl.uk/id/person/AustenJane1775-1817> | |
} | |
LIMIT 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment