query-f952dc2690ca6f1011e4cc45d9cd07f0

rq turtle/ttl

Count of representations by language codeListeria doesn't like the fact that the languages here aren't items (I haven't figured out a workaround). So - just run this query yourself:

Use at

PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
SELECT ?language (count(?rep) as ?count) WHERE {
  ?form ontolex:representation ?rep .
  BIND(lang(?rep) as ?language)
} group by ?language order by desc(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v2("?form") v4("?language"):::projected v3("?rep"):::projected v2 --"ontolex:representation"--> v3 bind0[/"?rep"/] v3 --o bind0 bind0 --as--o v4 bind2[/"count(?rep)"/] v3 --o bind2 bind2 --as--o v5