query-aeebf71c6431c8a889c388da0aee7438
The 13 provinces and territories of Canada
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 ?pot ?potLabel ?capitalLabel WHERE {
?pot wdt:P31 ?provinceOrTerritory .
VALUES ?provinceOrTerritory {wd:Q11828004 wd:Q9357527}
?pot wdt:P36 ?capital
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?potLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?capital")
v2("?pot"):::projected
v1("?potLabel"):::projected
v4("?provinceOrTerritory")
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
v2 --"wdt:P31"--> v4
bind0[/VALUES ?provinceOrTerritory/]
bind0-->v4
bind00(["wd:Q11828004"])
bind00 --> bind0
bind01(["wd:Q9357527"])
bind01 --> bind0
v2 --"wdt:P36"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end