Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save emres/3091787 to your computer and use it in GitHub Desktop.
Save emres/3091787 to your computer and use it in GitHub Desktop.
SPARQL query that successfully find the actors who took role both in The Shining and Hoffa (run this query at http://live.dbpedia.org/sparql )
PREFIX dbpedia2: <http://dbpedia.org/property/>
SELECT ?artist
FROM NAMED <http://live.dbpedia.org>
WHERE {
<http://dbpedia.org/resource/The_Shining_%28film%29> dbpedia2:starring ?artist .
<http://dbpedia.org/resource/Hoffa> dbpedia-owl:starring ?artist .
}
LIMIT 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment