query-6bb6188f986d3b9324d64bfecafa6681

rq turtle/ttl

Narrative locations

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map

PREFIX target: <http://www.wikidata.org/entity/Q9035>

SELECT 
  ?work ?workLabel
  ?narrative_location ?narrative_locationLabel
  ?geo
WHERE {
  ?work wdt:P407 target: ;
        wdt:P840 ?narrative_location .
  ?narrative_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; v3("?geo"):::projected v2("?narrative_location"):::projected v1("?work"):::projected c2([http://www.wikidata.org/entity/Q9035]):::iri c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P407"--> c2 v1 --"wdt:P840"--> v2 v2 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end