query-534a81b3877942f0b2dd28aab1b7e21b
collection (P195), France (Q142)
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/wdt:P279* wd:Q41207 .
?tableau wdt:P195 ?institution .
?institution wdt:P17 wd:Q142 .
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
a1((" "))
c3(["wd:Q41207"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q142"]):::iri
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P195"--> v3
v3 --"wdt:P17"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"count(?tableau)"/]
v2 --o bind1
bind1 --as--o v4