query-ace686c772bccce6b9abb59023403bdf
Propertiessubclass of (P279)country (P17)dissolved, abolished or demolished date (P576)applies to jurisdiction (P1001)
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 ?countryLabel ?postLabel ?post WHERE {
?post wdt:P279 wd:Q7614320;
wdt:P17 ?country
MINUS{ ?post wdt:P576 [] } # Exclude abolished posts
OPTIONAL{ ?post wdt:P1001 ?jurisdiction }
FILTER( !(BOUND(?jurisdiction) && ?jurisdiction != ?country) )
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" }
} ORDER BY ?countryLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?country")
v1("?countryLabel"):::projected
v2("?jurisdiction")
v4("?post"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c2(["wd:Q7614320"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal
f0[["not bound(?jurisdiction)?jurisdiction != ?country"]]
f0 --> v2
f0 --> v3
v4 --"wdt:P279"--> c2
v4 --"wdt:P17"--> v3
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v4 --"wdt:P576"--> a1
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P1001".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end