query-7d29a75bd1b6ecbc4787fb469d7c0bdc
title: Ministers of Bhutan (should be 9) SELECT ?minister ?ministerLabel ?currentOfficeholder ?currentOfficeholderLabel WHERE { ?minister wdt:P361 wd:Q2081864. OPTIONAL { ?minister wdt:P1308 ?currentOfficeholder. } FILTER NOT EXISTS { ?minister 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: Ministers of Bhutan (should be 9)
SELECT ?minister ?ministerLabel ?currentOfficeholder ?currentOfficeholderLabel WHERE {
?minister wdt:P361 wd:Q2081864.
OPTIONAL { ?minister wdt:P1308 ?currentOfficeholder. }
FILTER NOT EXISTS {
?minister 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;
v3("?currentOfficeholder"):::projected
v2("?dissolution")
v1("?minister"):::projected
c6(["bd:serviceParam"]):::iri
c3(["wd:Q2081864"]):::iri
c8(["en"]):::literal
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"p:P576"--> e0v2
e0v2("?dissolution"):::projected
e0v1("?minister"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"p:P576"--> v2
v1 --"p:direct/P361"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."p:direct/P1308".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end