query-36c5b3c3930927f50d39c70960053f43
Propertiesnarrative location (P840)located in the administrative territorial entity (P131)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item ?itemLabel
WHERE {
?item wdt:P840 ?narrative_location.
?narrative_location wdt:P131* wd:Q90.
OPTIONAL {
?item rdfs:label ?itemLabel filter (lang(?itemLabel) = "[AUTO_LANGUAGE]") .
}
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?narrative_location")
c4(["wd:Q90"]):::iri
v2 --"wdt:P840"--> v3
v3 --"wdt:P131"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end