query-7d460bbc927ebc88f29c701344d0af51

rq turtle/ttl

title: L2 (the 260 Districts of Ghana) SELECT ?item ?itemLabel WHERE { ?item wdt:P31 wd:Q545769. SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . } MINUS {?item wd:Q107663145 [] } } ORDER BY ?regionLabel ?itemLabel

Use at

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#>
# title: L2 (the 260 Districts of Ghana)
SELECT ?item ?itemLabel WHERE {
  ?item wdt:P31 wd:Q545769.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
  MINUS {?item wd:Q107663145 [] }
} ORDER BY ?regionLabel ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v2("?itemLabel"):::projected v1("?regionLabel") a1((" ")) c4(["bd:serviceParam"]):::iri c2(["wd:Q545769"]):::iri c6(["en"]):::literal v3 --"wdt:P31"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"wd:Q107663145"--> a1 end