query-6a7ebcbf18c791b00968bb500d263bd7

rq turtle/ttl

Instance types of German municipalities

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#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>

SELECT ?instance ?instanceLabel (COUNT(?muni) AS ?count) WHERE{
SELECT DISTINCT ?muni ?instance ?instanceLabel WHERE {
  ?muni p:P31 ?instanceBlock . 
  ?instanceBlock v:P31 ?instance .
  {?instance wdt:P279+ wd:Q262166} UNION {BIND (wd:Q262166 AS ?instance)}
  FILTER NOT EXISTS {?instanceBlock pq:P582 ?end}
  ?muni wdt:P439 ?key
        SERVICE wikibase:label{bd:serviceParam wikibase:language "de"}
}
}
GROUP BY ?instance ?instanceLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v7("?count") v3("?end") v6("?instance"):::projected v2("?instanceBlock") v6("?key") v4("?muni"):::projected c10(["de"]):::literal c8(["bd:serviceParam"]):::iri c5(["wd:Q262166"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"p:qualifier/P582"--> e0v2 e0v2("?end"):::projected e0v1("?instanceBlock"):::projected end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 v2 --"p:qualifier/P582"--> v3 v4 --"p:P31"--> v2 v2 --"p:statement/P31"--> v6 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; bind1[/"'wd:Q262166'"/] bind1 --as--o v6 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v6 --"p:direct/P279"--> c5 end union0r <== or ==> union0l end v4 --"p:direct/P439"--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind3[/"count(?muni)"/] v4 --o bind3 bind3 --as--o v7