query-b7c5806f643e730cf3bbb63f0cd011f5
Map of topic in films
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#>
#defaultView:Map
SELECT
?filmdatabasen
?film ?filmLabel
?location ?locationLabel
?geo
WHERE {
?film wdt:P1804 ?filmdatabasen ;
wdt:P921 ?location .
?location wdt:P625 ?geo .
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("?film"):::projected
v2("?filmdatabasen"):::projected
v4("?geo"):::projected
v3("?location"):::projected
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P1804"--> v2
v1 --"wdt:P921"--> v3
v3 --"wdt:P625"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end