query-f70fcc6f80ad8ea547c968909e33e1e6
Query for minister positions of active ministries of the Republic of KazakhstanThis query returns the associated ministers positions of the active ministries of the Republic of Kazakhstan. The query should give 21 + 1 result (21 minister positions + the position of prime minister).
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 DISTINCT ?minister ?ministerLabel ?organization ?organizationLabel
WHERE {
?minister wdt:P279* wd:Q83307; # Subclass of minister (including indirect subclasses)
wdt:P1001 wd:Q232; # Applies to jurisdiction Kazakhstan
wdt:P2389 ?organization. # Office held by head of the organization
FILTER NOT EXISTS { ?organization wdt:P576 ?dissolved. } # Filter out organizations that have been dissolved
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("?dissolved")
v3("?minister"):::projected
v1("?organization"):::projected
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c5(["wd:Q232"]):::iri
c3(["wd:Q83307"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P576"--> e0v2
e0v2("?dissolved"):::projected
e0v1("?organization"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"wdt:P576"--> v2
v3 --"wdt:P279"--> c3
v3 --"wdt:P1001"--> c5
v3 --"wdt:P2389"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end