query-7c8372553b0a0d87d1c35dde0210cbcd
TODO
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 distinct ?city ?cityLabel {
wd:Q48435 wdt:P131+ ?city . ?city wdt:P31/wdt:P279* wd:Q7930989
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;
v1("?city"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c1(["wd:Q48435"]):::iri
c5(["wd:Q7930989"]):::iri
c9(["en"]):::literal
c1 --"wdt:P131"--> v1
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end