Created
February 10, 2016 21:10
-
-
Save peterk/dcc2b1d7d8aeb7220557 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 | |
LIMIT 300 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment