query-ced45ba6fd270e65d8dd1d37b346f145
TODO
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#>
#defaultView:BubbleChart
#title:View instances of which CdV-BW-22 projects are a particular example
SELECT ?instance ?instanceLabel (COUNT(?instance) AS ?count) WHERE {
?project wdt:P9883 wd:Q110553382;
wdt:P31 ?instance.
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}
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;
v4("?count")
v3("?instance"):::projected
v2("?project")
c5(["bd:serviceParam"]):::iri
c7(["de,en"]):::literal
c2(["wd:Q110553382"]):::iri
v2 --"wdt:P9883"--> c2
v2 --"wdt:P31"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(?instance)"/]
v3 --o bind1
bind1 --as--o v4