query-9ca586c18f3efd7d5037d7d476bdba40
(Q1428)Georgia (P131)located in the administrative territorial entity
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 ?film ?filmLabel ?castmember ?castmemberLabel
WHERE
{
?film wdt:P31/wdt:P279* wd:Q11424 .
?film wdt:P915 wd:Q1428 . # shot in Georgia (US state)
?film wdt:P161 ?castmember .
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;
v2("?castmember"):::projected
v1("?film"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c5(["wd:Q1428"]):::iri
c10(["en"]):::literal
c3(["wd:Q11424"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P915"--> c5
v1 --"wdt:P161"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end