Skip to content

Instantly share code, notes, and snippets.

@eugrus
Created March 30, 2024 18:13
Show Gist options
  • Save eugrus/accb584f707449f77deb81d220fc44b8 to your computer and use it in GitHub Desktop.
Save eugrus/accb584f707449f77deb81d220fc44b8 to your computer and use it in GitHub Desktop.
Search for movies on WikiData by the actors who played in them.
SELECT ?film ?filmLabel
WHERE {
?actor1 rdfs:label "Jennifer Aniston"@en.
?actor2 rdfs:label "Adam Sandler"@en.
?film wdt:P161 ?actor1, ?actor2.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment