query-74569255336cddb63c746620c352ba01

rq turtle/ttl

Compte des ADQ sur WP

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?badgeLabel ?badge (COUNT(?link) AS ?count) WHERE {
  ?link wikibase:badge ?badge;
        schema:about ?item;
        schema:inLanguage "fr";
        schema:isPartOf <https://fr.wikipedia.org/>.

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_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 v4("?count") v3("?item") v1("?link"):::projected c8(["bd:serviceParam"]):::iri c6([https://fr.wikipedia.org/]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["fr"]):::literal v1 --"wikibase:badge"--> v2 v1 --"schema:about"--> v3 v1 --"schema:inLanguage"--> c4 v1 --"schema:isPartOf"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind1[/"count(?link)"/] v1 --o bind1 bind1 --as--o v4