query-c627288b189f8ef7aec7bf79d0fbca92
05:59, 17 August 2023 (UTC)) talk (InfovariusCommented "filter" shows only lexemes without senses. And you can add "LIMIT 50" when there will be more. --If I instead search for Greek words I change it to and my question...
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 dct: <http://purl.org/dc/terms/>
SELECT ?l ?lemma WHERE {
?l a ontolex:LexicalEntry ; dct:language ?language ;
wikibase:lemma ?lemma .
?language wdt:P218 'el'
#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
c2(["ontolex:LexicalEntry"]):::iri
c6(["el"]):::literal
v1 --"a"--> c2
v1 --"dct:language"--> v2
v1 --"wikibase:lemma"--> v3
v2 --"wdt:P218"--> c6