query-2a757d7256da53f72fb59d454ccd0801
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 ?province ?provinceLabel ?city ?cityLabel WHERE {
?province wdt:P31 wd:Q484170. # commune of France
?city wdt:P131* ?province. # ?city is within the province
?city wdt:P31 wd:Q515 . #?city is a city
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?city"):::projected
v1("?province"):::projected
c6(["bd:serviceParam"]):::iri
c4(["wd:Q515"]):::iri
c8(["fr"]):::literal
c2(["wd:Q484170"]):::iri
v1 --"wdt:P31"--> c2
v2 --"wdt:P131"--> v1
v2 --"wdt:P31"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end