query-81e9b82b63e7b46940d5ed1890b52dae
Movies in which the director is also part of the cast
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?instanceLabel ?film ?filmLabel ?personLabel WHERE {
?film wdt:P31 ?instance .
?instance wdt:P279* wd:Q11424 .
?film wdt:P57 ?person .
?film wdt:P161 ?person .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
} ORDER BY ?instanceLabel ?filmLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?film"):::projected
v2("?filmLabel"):::projected
v4("?instance")
v1("?instanceLabel"):::projected
v5("?person")
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c3(["wd:Q11424"]):::iri
v3 --"wdt:P31"--> v4
v4 --"wdt:P279"--> c3
v3 --"wdt:P57"--> v5
v3 --"wdt:P161"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end