query-accfe72dd3c2de33eab89b73c6866751
title: Chiwogs of Bhutan
SELECT ?gewog ?gewogLabel ?dissolvedDate WHERE { ?gewog wdt:P31 wd:Q1352019; # Instance of gewog wdt:P17 wd:Q917; # Located in Bhutan p:P576 ?dissolution. # Has a dissolution statement ?dissolution ps:P576 ?dissolvedDate. # Dissolution date
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?dissolvedDate
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Chiwogs of Bhutan
SELECT ?gewog ?gewogLabel ?dissolvedDate WHERE {
?gewog wdt:P31 wd:Q1352019; # Instance of gewog
wdt:P17 wd:Q917; # Located in Bhutan
p:P576 ?dissolution. # Has a dissolution statement
?dissolution ps:P576 ?dissolvedDate. # Dissolution date
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
}
}
ORDER BY ?dissolvedDate
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?dissolution")
v1("?dissolvedDate"):::projected
v2("?gewog"):::projected
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q1352019"]):::iri
c4(["wd:Q917"]):::iri
v2 --"p:direct/P31"--> c2
v2 --"p:direct/P17"--> c4
v2 --"p:P576"--> v3
v3 --"p:statement/P576"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end