query-d60126c36e025ff58933aae1d8d502b0
Badge use of a particular Wikimedia project
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?badge ?badgeLabel (COUNT(*) AS ?cnt) WHERE {
?sitelink schema:isPartOf <https://de.wikipedia.org/>; 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")
c2([https://de.wikipedia.org/]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v1 --"schema:isPartOf"--> c2
v1 --"wikibase:badge"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(*)"/]
bind1 --as--o v3