utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
find Bokmål lemmas: 100 max, with pos, glosses, examples | a2 | SELECT ?lemma ?category ?gloss ?example
WHERE
{
VALUES ?lang {'Bokmål'@en}.
?qitemLang rdfs:label ?lang ;
wdt:P218 ?langShort.
?lexeme a ontolex:LexicalEntry ;
dct:language ?language ;
wikibase:lemma ?lemma ;
wikibase:lexicalCategory [ rdfs:label ?category ];
ontolex:sense ?sense .
?language wdt:P218 ?langShort .
?sense skos:definition ?gloss .
?lexeme p:P5831 ?statement .
?statement ps:P5831 ?example .
FILTER EXISTS {?lexeme ontolex:sense ?sense }
FILTER(LANG(?gloss) = ?langShort)
FILTER(LANG(?category) = ?langShort)
}
LIMIT 100 |
retrieve 100 French lemmas: pos, meanings, examples | a2 | SELECT ?lemma ?category ?gloss ?example
WHERE
{
VALUES ?lang {'French'@en}.
?qitemLang rdfs:label ?lang ;
wdt:P218 ?langShort.
?lexeme a ontolex:LexicalEntry ;
dct:language ?language ;
wikibase:lemma ?lemma ;
wikibase:lexicalCategory [ rdfs:label ?category ];
ontolex:sense ?sense .
?language wdt:P218 ?langShort .
?sense skos:definition ?gloss .
?lexeme p:P5831 ?statement .
?statement ps:P5831 ?example .
FILTER EXISTS {?lexeme ontolex:sense ?sense }
FILTER(LANG(?gloss) = ?langShort)
FILTER(LANG(?category) = ?langShort)
}
LIMIT 100 |
find up to 100 Danish lemmas with definitions, examples | a2 | SELECT ?lemma ?category ?gloss ?example
WHERE
{
VALUES ?lang {'Danish'@en}.
?qitemLang rdfs:label ?lang ;
wdt:P218 ?langShort.
?lexeme a ontolex:LexicalEntry ;
dct:language ?language ;
wikibase:lemma ?lemma ;
wikibase:lexicalCategory [ rdfs:label ?category ];
ontolex:sense ?sense .
?language wdt:P218 ?langShort .
?sense skos:definition ?gloss .
?lexeme p:P5831 ?statement .
?statement ps:P5831 ?example .
FILTER EXISTS {?lexeme ontolex:sense ?sense }
FILTER(LANG(?gloss) = ?langShort)
FILTER(LANG(?category) = ?langShort)
}
LIMIT 100 |
retrieve 100 Croatian lemmas: pos, meanings, examples | a2 | SELECT ?lemma ?category ?gloss ?example
WHERE
{
VALUES ?lang {'Croatian'@en}.
?qitemLang rdfs:label ?lang ;
wdt:P218 ?langShort.
?lexeme a ontolex:LexicalEntry ;
dct:language ?language ;
wikibase:lemma ?lemma ;
wikibase:lexicalCategory [ rdfs:label ?category ];
ontolex:sense ?sense .
?language wdt:P218 ?langShort .
?sense skos:definition ?gloss .
?lexeme p:P5831 ?statement .
?statement ps:P5831 ?example .
FILTER EXISTS {?lexeme ontolex:sense ?sense }
FILTER(LANG(?gloss) = ?langShort)
FILTER(LANG(?category) = ?langShort)
}
LIMIT 100 |
get up to 100 Azerbaijani lemmas: pos, glosses, usage | a2 | SELECT ?lemma ?category ?gloss ?example
WHERE
{
VALUES ?lang {'Azerbaijani'@en}.
?qitemLang rdfs:label ?lang ;
wdt:P218 ?langShort.
?lexeme a ontolex:LexicalEntry ;
dct:language ?language ;
wikibase:lemma ?lemma ;
wikibase:lexicalCategory [ rdfs:label ?category ];
ontolex:sense ?sense .
?language wdt:P218 ?langShort .
?sense skos:definition ?gloss .
?lexeme p:P5831 ?statement .
?statement ps:P5831 ?example .
FILTER EXISTS {?lexeme ontolex:sense ?sense }
FILTER(LANG(?gloss) = ?langShort)
FILTER(LANG(?category) = ?langShort)
}
LIMIT 100 |
retrieve at most 100 lemmas in Gujarati with part-of-speech, glosses and usage examples | a2 | SELECT ?lemma ?category ?gloss ?example
WHERE
{
VALUES ?lang {'Gujarati'@en}.
?qitemLang rdfs:label ?lang ;
wdt:P218 ?langShort.
?lexeme a ontolex:LexicalEntry ;
dct:language ?language ;
wikibase:lemma ?lemma ;
wikibase:lexicalCategory [ rdfs:label ?category ];
ontolex:sense ?sense .
?language wdt:P218 ?langShort .
?sense skos:definition ?gloss .
?lexeme p:P5831 ?statement .
?statement ps:P5831 ?example .
FILTER EXISTS {?lexeme ontolex:sense ?sense }
FILTER(LANG(?gloss) = ?langShort)
FILTER(LANG(?category) = ?langShort)
}
LIMIT 100 |
find noun words in Catalan ending with the letter 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Catalan'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 's$')) .
} |
locate noun words in English ending with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
discover proper noun words in Czech with 'č' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Czech'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'č$')) .
} |
locate adjective words in Czech ending with 'm' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Czech'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'm$')) .
} |
search adverb forms in German with the suffix 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adverb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'n$')) .
} |
discover nominal locution endings in Polish with 'h' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'nominal locution'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'h$')) .
} |
search adjective forms in English with the suffix 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
seek preposition terms in Malay ending with 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Malay'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'preposition'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'a$')) .
} |
seek interjection terms in English that conclude with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'interjection'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
seek verb terms in Bokmål that conclude with 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Bokmål'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'a$')) .
} |
locate verb words in Latin ending with 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'a$')) .
} |
discover proper noun endings in Czech with 'é' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Czech'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'é$')) .
} |
search for proper noun forms in Punjabi ending in 'ل' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ل$')) .
} |
find noun words in Nynorsk ending with the letter 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'r$')) .
} |
seek noun terms in Czech that conclude with 'o' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Czech'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'o$')) .
} |
search adjective forms in Russian with the suffix 'м' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Russian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'м$')) .
} |
locate verb forms in Punjabi with endings like 'ੋ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ੋ$')) .
} |
locate proper noun words in English ending with 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'n$')) .
} |
discover noun endings in Swedish with 'd' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Swedish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'd$')) .
} |
seek adjective terms in Swedish that conclude with 'å' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Swedish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'å$')) .
} |
find noun forms in Māori ending with “i” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Māori'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'i$')) .
} |
seek proper noun terms in French ending with 'o' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'o$')) .
} |
locate adjective forms in Kurmanji with endings like 'û' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Kurmanji'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'û$')) .
} |
search verb forms in Latin with the suffix 't' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 't$')) .
} |
seek verb terms in German ending with 'f' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'f$')) .
} |
discover verb endings in French with 'z' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'z$')) .
} |
seek verb terms in Punjabi that conclude with 'ی' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ی$')) .
} |
seek noun terms in Bangla ending with 'র' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Bangla'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'র$')) .
} |
find prefix forms in French ending with “x” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'prefix'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'x$')) .
} |
seek numeral terms in Russian that conclude with 'х' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Russian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'numeral'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'х$')) .
} |
discover indefinite adjective endings in French with 's' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'indefinite adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 's$')) .
} |
find noun endings in Polish with the letter 'm' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'm$')) .
} |
locate preposition words in Latin ending with 't' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'preposition'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 't$')) .
} |
seek adjective terms in Breton that conclude with 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Breton'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'r$')) .
} |
locate noun forms in Polish with endings like 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 's$')) .
} |
search for interjection forms in Nynorsk ending in 'å' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'interjection'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'å$')) .
} |
discover adjective words in Portuguese with 'o' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'o$')) .
} |
discover verb words in German with 'g' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'g$')) .
} |
locate noun words in Japanese ending with '虹' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Japanese'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, '虹$')) .
} |
search noun forms in Polish with the suffix 'i' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'i$')) .
} |
seek proper noun terms in Punjabi that conclude with 'ں' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ں$')) .
} |
seek suffix terms in English that conclude with 'l' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'suffix'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'l$')) .
} |
search adjective forms in Japanese with the suffix 'っ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Japanese'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'っ$')) .
} |
search for letter forms in Malayalam ending in 'അ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Malayalam'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'letter'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'അ$')) .
} |
find noun endings in Nynorsk with the letter 'å' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'å$')) .
} |
find noun forms in Estonian ending with “e” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Estonian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
search verb forms in Latin with the suffix 'c' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'c$')) .
} |
find adjective words in Nynorsk ending with the letter 'v' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'v$')) .
} |
search for noun forms in Basque ending in 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Basque'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
find nominal locution endings in French with the letter 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'nominal locution'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 's$')) .
} |
find indefinite article endings in English with the letter 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'indefinite article'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'a$')) .
} |
locate verb words in Persian ending with 'ت' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Persian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ت$')) .
} |
find attributive locution words in English ending with the letter 'h' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'attributive locution'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'h$')) .
} |
seek adjective terms in Ukrainian that conclude with 'и' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Ukrainian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'и$')) .
} |
discover suffix words in English with '-' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'suffix'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, '-$')) .
} |
search nominal suffix forms in English with the suffix 'm' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'nominal suffix'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'm$')) .
} |
locate article words in Hebrew ending with 'ה' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Hebrew'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'article'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ה$')) .
} |
search proper noun forms in Polish with the suffix 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 's$')) .
} |
find noun forms in French ending with “s” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 's$')) .
} |
find adjective words in English ending with the letter 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'r$')) .
} |
discover noun endings in British Sign Language with '7' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'British Sign Language'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, '7$')) .
} |
locate adjective words in Polish ending with 'u' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'u$')) .
} |
discover adverb words in Polish with 'j' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adverb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'j$')) .
} |
search for noun forms in Arabic ending in 'ِ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Arabic'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ِ$')) .
} |
seek preposition terms in English ending with 'd' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'preposition'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'd$')) .
} |
seek noun terms in Ancient Greek ending with 'ν' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Ancient Greek'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ν$')) .
} |
discover adverb endings in Polish with 'o' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adverb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'o$')) .
} |
find noun endings in Kurmanji with the letter 'g' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Kurmanji'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'g$')) .
} |
find verb endings in English with the letter 'l' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'l$')) .
} |
search numeral forms in Russian with the suffix 'а' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Russian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'numeral'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'а$')) .
} |
seek noun terms in Czech that conclude with 'c' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Czech'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'c$')) .
} |
seek verb terms in Italian ending with 'i' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Italian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'i$')) .
} |
seek adverb terms in Hungarian ending with 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Hungarian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adverb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'n$')) .
} |
search for verb forms in French ending in 't' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 't$')) .
} |
seek noun terms in Okinawan that conclude with 'じ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Okinawan'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'じ$')) .
} |
locate letter forms in Malayalam with endings like 'ജ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Malayalam'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'letter'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ജ$')) .
} |
discover noun words in French with 'l' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'l$')) .
} |
discover indefinite article endings in Italian with 'o' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Italian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'indefinite article'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'o$')) .
} |
locate numeral words in Russian ending with 'ч' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Russian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'numeral'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ч$')) .
} |
find noun endings in Italian with the letter 'o' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Italian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'o$')) .
} |
discover letter words in Malayalam with 'ഠ' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Malayalam'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'letter'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ഠ$')) .
} |
find adjective endings in Kurmanji with the letter 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Kurmanji'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'r$')) .
} |
find suffix endings in Korean with the letter '하' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Korean'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'suffix'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, '하$')) .
} |
discover verb words in Hebrew with 'ת' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Hebrew'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ת$')) .
} |
discover verb endings in Old English with 'e' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Old English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
locate indefinite article words in English ending with 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'indefinite article'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'n$')) .
} |
search noun forms in Polish with the suffix 'u' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'u$')) .
} |
seek noun terms in Czech that conclude with 'y' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Czech'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'y$')) .
} |
seek numeral terms in French ending with 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'numeral'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'n$')) .
} |
seek proper noun terms in Czech ending with 'ů' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Czech'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ů$')) .
} |
discover noun words in Malayalam with 'ി' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Malayalam'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ി$')) .
} |
find verb endings in German with the letter 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'r$')) .
} |
locate noun forms in Estonian with endings like 't' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Estonian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 't$')) .
} |
find noun forms in Italian ending with “à” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Italian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'à$')) .
} |
Subsets and Splits