query-2d2461e2af2366176b320db8a13fdf15
Propertiesproduction company (P272)cast member (P161)founded by (P112)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?movieLabel ?movie ?personLabel ?person ?productionCompanyLabel ?productionCompany
WHERE {
?movie wdt:P272 ?productionCompany;
wdt:P161 ?person ;
rdfs:label ?movieLabel.
?productionCompany wdt:P112 ?person .
# ?prop wikibase:directClaim ?p
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?movieLabel
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?movie"):::projected
v1("?movieLabel"):::projected
v4("?person"):::projected
v3("?productionCompany"):::projected
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
v2 --"wdt:P272"--> v3
v2 --"wdt:P161"--> v4
v2 --"rdfs:label"--> v1
v3 --"wdt:P112"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end