query-03303fa3f9337848cec0bd33104f056e
Movies in which the director is also producer and screenwriter
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?instanceLabel ?film ?filmLabel ?personLabel WHERE {
?film wdt:P31 ?instance .
?film wdt:P57 ?person .
?film wdt:P58 ?person .
?film wdt:P162 ?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")
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
v3 --"wdt:P31"--> v4
v3 --"wdt:P57"--> v5
v3 --"wdt:P58"--> v5
v3 --"wdt:P162"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end