query-464d17c0db0819d968139e27bdbccb90
Propertiesmaintained by WikiProject (P6104)
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#>
PREFIX target: <http://www.wikidata.org/prop/direct/P407>
SELECT ?count ?Language ?LanguageLabel
WHERE {
{
SELECT (COUNT(?s) AS ?count) ?Language WHERE {
?s target: ?Language .
?s wdt:P6104 wd:Q56241615 .
}
GROUP BY ?Language
ORDER BY DESC(?count)
LIMIT 100
} SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da,de,es,fr,jp,nl,no,ru,sv,zh" . }
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?Language"):::projected
v4("?count"):::projected
v2("?s")
c7(["en,da,de,es,fr,jp,nl,no,ru,sv,zh"]):::literal
c5(["bd:serviceParam"]):::iri
c3(["wd:Q56241615"]):::iri
v2 --"wdt:P407"--> v3
v2 --"wdt:P6104"--> c3
bind1[/"count(?s)"/]
v2 --o bind1
bind1 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end