query-1732621fe1176d167171a843131427d1
Lexemes in the Slovenian language 06:51, 16 August 2023 (UTC)) talk (MythsOfAesopI would be interested in how Slovenian words have been entered into Wikidata as Lexemes so I can check them word by word and learn how to create my own. I would like to limit it to 50 entries, I would also like the query to be flexible so I can easily change the language to any other that exists. 06:59, 16 August 2023 (UTC)) talk (MythsOfAesop (P1343)described by source Sorry I made a mistake. I also want this property to be present on all Slovenian words There are only 32 Slovenian lexemes:
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 'sl'
#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(["sl"]):::literal
v1 --"a"--> c2
v1 --"dct:language"--> v2
v1 --"wikibase:lemma"--> v3
v2 --"wdt:P218"--> c6