query-0062e14e09b19d6979a8c08bffaa7c77
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?l ?lemma WHERE {
?l a ontolex:LexicalEntry ; dct:language ?language ;
wikibase:lemma ?lemma .
?language wdt:P218 'el'.
?l wdt:P1343 wd:Q22906367.
#FILTER NOT EXISTS {?l ontolex:sense ?sense }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?l"):::projected
v2("?language")
v3("?lemma"):::projected
c8(["wd:Q22906367"]):::iri
c2(["ontolex:LexicalEntry"]):::iri
c6(["el"]):::literal
v1 --"a"--> c2
v1 --"dct:language"--> v2
v1 --"wikibase:lemma"--> v3
v2 --"wdt:P218"--> c6
v1 --"wdt:P1343"--> c8