query-d77612efbc3727a1454ef2e5a3362650
collection (P195) (Canada)
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#>
SELECT ?institution ?institutionLabel (COUNT(?tableau) AS ?compte) WHERE {
?tableau wdt:P31 wd:Q3305213 .
?tableau wdt:P195 ?institution .
?institution wdt:P17 wd:Q16 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?institution ?institutionLabel
ORDER BY DESC(?compte)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?compte")
v3("?institution"):::projected
v2("?tableau"):::projected
c5(["wd:Q16"]):::iri
c2(["wd:Q3305213"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P195"--> v3
v3 --"wdt:P17"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"count(?tableau)"/]
v2 --o bind1
bind1 --as--o v4