query-33fcbf2f5aea32ed98a6cb8b79bc9c29
General statistics of badge use
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?badge ?badgeLabel (COUNT(*) AS ?cnt) WHERE {
?sitelink wikibase:badge ?badge .
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
} GROUP BY ?badge ?badgeLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?badge"):::projected
v3("?cnt")
v1("?sitelink")
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v1 --"wikibase:badge"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
bind1[/"count(*)"/]
bind1 --as--o v3