query-b7784ba743a9ad48240f5886af5e8e7f
Use by language order by languages (if number > 4) : (P11055)DiACL lexeme ID Number of lexemes using Graphs are temporarily unavailable due to technical issues.
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?langLabel (COUNT(?l) AS ?nb) WHERE {
?l dct:language ?lang;
wdt:P11055 ?id.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?langLabel
HAVING (?nb > 4 )
ORDER BY DESC (?nb)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?id")
v2("?l"):::projected
v3("?lang")
v5("?nb")
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?nb > '4^^xsd:integer'"]]
f0 --> v5
v2 --"dct:language"--> v3
v2 --"wdt:P11055"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind2[/"count(?l)"/]
v2 --o bind2
bind2 --as--o v5