query-e1e2f7362f62b946f611cbb1ac021ace

rq turtle/ttl

TODO

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#>
SELECT ?KomLabel (sum(?q) as ?q) WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?Kom wdt:P31 wd:Q340169.
  ?Kom wdt:P407 wd:Q8752.
  ?Kom wdt:P2541 ?op.
  ?op wdt:P1082 ?q.
}
GROUP by ?KomLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?Kom") v2("?op") v4("?q"):::projected c2(["bd:serviceParam"]):::iri c8(["wd:Q8752"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6(["wd:Q340169"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P31"--> c6 v1 --"wdt:P407"--> c8 v1 --"wdt:P2541"--> v2 v2 --"wdt:P1082"--> v4 bind1[/"sum(?q)"/] v4 --o bind1 bind1 --as--o v4