query-72f1b5f224772082e609b87466d6a47f

rq turtle/ttl

Graph for other collaboration

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Graph
PREFIX target: <http://www.wikidata.org/entity/Q24278982>

SELECT DISTINCT
  ?actor1 ?actor1Label
  ?actor2 ?actor2Label
WHERE {
  target: wdt:P161 ?actor1, ?actor2 .
  ?other_film wdt:P161 ?actor1, ?actor2 .
  FILTER (?other_film != target:)
  FILTER (?actor1 != ?actor2)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?actor1"):::projected v2("?actor2"):::projected v3("?other_film") c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1([http://www.wikidata.org/entity/Q24278982]):::iri f0[["?actor1 != ?actor2"]] f0 --> v1 f0 --> v2 f1[["?other_film != http://www.wikidata.org/entity/Q24278982"]] f1 --> v3 c1 --"wdt:P161"--> v1 c1 --"wdt:P161"--> v2 v3 --"wdt:P161"--> v1 v3 --"wdt:P161"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end