Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save emres/3091861 to your computer and use it in GitHub Desktop.
Save emres/3091861 to your computer and use it in GitHub Desktop.
SPARQL query that tries to find the actors who took role both in Continuum and The Killing (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_Killing_%28U.S._TV_series%29> dbpedia2:starring ?artist .
<http://dbpedia.org/resource/Continuum_%28TV_series%29> dbpedia-owl:starring ?artist .
}
LIMIT 10
@santteegt
Copy link

This Query does not retrieve related actors anymore

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment