query-9ac2978c11927722fac102ab24a5ab1e
Lexeme languages
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?language ?languageLabel (COUNT(?le) AS ?numOccurs)
WHERE {
?le a ontolex:LexicalEntry ;
dct:language ?language .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?language ?languageLabel
ORDER BY DESC(?numOccurs)
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?language"):::projected
v2("?le"):::projected
v4("?numOccurs")
c5(["bd:serviceParam"]):::iri
c2(["ontolex:LexicalEntry"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"a"--> c2
v2 --"dct:language"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(?le)"/]
v2 --o bind1
bind1 --as--o v4