query-66ac904e9650c9ab34e34c43d7532330
Propertiesinstance of (P31)subclass of (P279)dissolved, abolished or demolished date (P576)located in the administrative territorial entity (P131)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wdno: <http://www.wikidata.org/prop/novalue/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?territory ?territoryLabel ?date WHERE
{
# administrative territorial entity
?territory wdt:P31/wdt:P279* wd:Q56061 .
# with a statement defined to be "no value" as P131
?territory rdf:type wdno:P131 .
# abolished date
?territory wdt:P576 ?date .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
} ORDER BY ( ?territoryLabel )
# avoid timeout
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?date"):::projected
v2("?territory"):::projected
v1("?territoryLabel"):::projected
a1((" "))
c10(["de"]):::literal
c8(["bd:serviceParam"]):::iri
c5(["wdno:P131"]):::iri
c3(["wd:Q56061"]):::iri
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"a"--> c5
v2 --"wdt:P576"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end