query-60026a56949bb6a7324791cd17595e3a
title: Ministries of Bhutan (should be 9) SELECT ?ministry ?ministryLabel WHERE { ?ministry wdt:P31 wd:Q192350; wdt:P1001 wd:Q917.
FILTER NOT EXISTS { ?ministry p:P576 ?dissolution. # Exclude those with a dissolution statement } SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } }
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 p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Ministries of Bhutan (should be 9)
SELECT ?ministry ?ministryLabel WHERE {
?ministry wdt:P31 wd:Q192350;
wdt:P1001 wd:Q917.
FILTER NOT EXISTS {
?ministry p:P576 ?dissolution. # Exclude those with a dissolution statement
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?dissolution")
v1("?ministry"):::projected
c7(["bd:serviceParam"]):::iri
c3(["wd:Q192350"]):::iri
c9(["en"]):::literal
c5(["wd:Q917"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"p:P576"--> e0v2
e0v2("?dissolution"):::projected
e0v1("?ministry"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"p:P576"--> v2
v1 --"p:direct/P31"--> c3
v1 --"p:direct/P1001"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end