Skip to content

Instantly share code, notes, and snippets.

@peterk
Created February 10, 2016 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterk/dcc2b1d7d8aeb7220557 to your computer and use it in GitHub Desktop.
Save peterk/dcc2b1d7d8aeb7220557 to your computer and use it in GitHub Desktop.
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