Created
January 2, 2016 09:21
-
-
Save peterk/0be58c7e83ee8582523f to your computer and use it in GitHub Desktop.
This file contains hidden or 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 owl: <http://www.w3.org/2002/07/owl#> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
PREFIX rdfs: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
select DISTINCT ?name ?title ?book | |
WHERE { | |
?book <http://purl.org/dc/elements/1.1/creator> ?creator . | |
?creator <http://dbpedia.org/property/deathYear> "1945" . | |
?book <http://purl.org/dc/elements/1.1/title> ?title . | |
?creator foaf:name ?name . | |
} ORDER BY ?name ?title |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment