query-7936472f78024dea692ed274d5ed4ad3

rq turtle/ttl

title: Dzongkhags of Bhutan (should be 20) PREFIX wd: http://www.wikidata.org/entity/ PREFIX wdt: http://www.wikidata.org/prop/direct/ PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#

SELECT ?district ?districtLabel WHERE { ?district wdt:P31 wd:Q831889; # ?district is an instance of a district wdt:P17 wd:Q917. # ?district is located in Bhutan SERVICE wikibase:label { # This service will include labels in the query bd:serviceParam wikibase:language "en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Dzongkhags of Bhutan (should be 20)
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT ?district ?districtLabel
WHERE {
  ?district wdt:P31 wd:Q831889;   # ?district is an instance of a district
            wdt:P17 wd:Q917.      # ?district is located in Bhutan
  SERVICE wikibase:label {        # This service will include labels in the query
    bd:serviceParam wikibase:language "en".
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?district"):::projected c6(["bd:serviceParam"]):::iri c2(["wd:Q831889"]):::iri c8(["en"]):::literal c4(["wd:Q917"]):::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