query-da69c13e8e921c1ea8abe0f96361fdde
And same for the lemmata at the form level:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT DISTINCT ?l ?lemmata WHERE {
?l a ontolex:LexicalEntry ; dct:language wd:Q188 ; wikibase:lexicalCategory wd:Q1084 ; ontolex:lexicalForm ?form .
?form ontolex:representation ?lemmata .
FILTER regex (?word, "^[a-z]").
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?form")
v2("?l"):::projected
v4("?lemmata"):::projected
v1("?word")
c3(["ontolex:LexicalEntry"]):::iri
c7(["wd:Q1084"]):::iri
c5(["wd:Q188"]):::iri
f0[["regex(?word,'^#91;a-z#93;')"]]
f0 --> v1
v2 --"a"--> c3
v2 --"dct:language"--> c5
v2 --"wikibase:lexicalCategory"--> c7
v2 --"ontolex:lexicalForm"--> v3
v3 --"ontolex:representation"--> v4