query-2e837d79fa9c6fda38fdb246f391d53c
De 100 meest vertaalde concepten in de naamruimte Lexeme
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# door So9q, 21-11-2019
#defaultView:BubbleChart
SELECT ?meaning ?meaningLabel ?count
WHERE {
{
SELECT ?meaning (count(?l) as ?count)
WHERE {
?l a ontolex:LexicalEntry ;
ontolex:sense ?sense.
?sense wdt:P5137 ?meaning.
}
GROUP BY ?meaning
ORDER BY desc(?count)
LIMIT 100
} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" . }
}
ORDER BY desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?count"):::projected
v2("?l")
v4("?meaning"):::projected
v3("?sense")
c6(["bd:serviceParam"]):::iri
c2(["ontolex:LexicalEntry"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal
v2 --"a"--> c2
v2 --"ontolex:sense"--> v3
v3 --"wdt:P5137"--> v4
bind1[/"count(?l)"/]
v2 --o bind1
bind1 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end