query-3f02491b83b1e15556896c631bc59284

rq turtle/ttl

Actors who have played a given character

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?actor ?actorLabel ?filmLabel
WHERE {
      ?film p:P161 [
        ps:P161 ?actor;
        pq:P453 wd:Q2009573 # <- substitute the Q number of the character you are interested in
      ].
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?actor"):::projected v2("?film") a1((" ")) c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c3(["wd:Q2009573"]):::iri a1 --"p:statement/P161"--> v1 a1 --"p:qualifier/P453"--> c3 v2 --"p:P161"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end