query-d3a59731a5cbb9a5e4feb38799b149db
Query for regulatory and supervisory agencies of the Republic of KazakhstanThe query searches for instances of regulatory agencies and courts located in Kazakhstan. The query should give 11 results
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 ?agency ?agencyLabel WHERE {
?agency wdt:P31 wd:Q1639780; # instance of regulatory agency
wdt:P17 wd:Q232. # located in Kazakhstan
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;
v1("?agency"):::projected
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c4(["wd:Q232"]):::iri
c2(["wd:Q1639780"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P17"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end