utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
find noun forms in Punjabi ending with “ب” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@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 words in Estonian ending with the letter 's' | 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, 's$')) .
} |
locate noun forms in New Persian with endings like 'ш' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'New Persian'@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 conjunction words in Egyptian Arabic with 'ّ' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Egyptian Arabic'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'conjunction'@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 suffix forms in German with endings like 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@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, 'n$')) .
} |
search letter forms in Malayalam with the suffix 'ഝ' | 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, 'ഝ$')) .
} |
search verb forms in Portuguese with the suffix 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@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, 's$')) .
} |
search numeral forms in Standard Mandarin with the suffix 'ì' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Standard Mandarin'@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 verb words in Breton ending with the letter 'ñ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Breton'@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 preposition terms in Latin ending with 'e' | 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, 'e$')) .
} |
discover noun words in Nynorsk with 'v' at the end | 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, 'v$')) .
} |
search for noun forms in Malayalam ending in 'ൻ' | 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, 'ൻ$')) .
} |
seek personal pronoun terms in German ending with 'h' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'personal pronoun'@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 proper noun forms in Italian with the suffix 'x' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Italian'@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, 'x$')) .
} |
locate verb words in Polish ending with 'm' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@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, 'm$')) .
} |
search for verb forms in German ending in 'k' | 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, 'k$')) .
} |
search verb forms in Breton with the suffix 'ô' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Breton'@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 noun words in Upper Sorbian ending with the letter 'y' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Upper Sorbian'@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$')) .
} |
find noun words in Igbo ending with the letter 'ị' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Igbo'@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 words in Portuguese ending with the letter 'm' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@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, 'm$')) .
} |
locate adjective forms in Italian with endings like 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Italian'@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, 'n$')) .
} |
discover noun words in Bokmål with 'a' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Bokmål'@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, 'a$')) .
} |
find numeral endings in Russian with the letter 'е' | 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 proper noun endings in Czech with the letter 'e' | 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, 'e$')) .
} |
discover pronoun endings in Polish with 'k' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'pronoun'@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, 'k$')) .
} |
find prefix forms in French ending with “-” | 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, '-$')) .
} |
search for noun forms in Bokmål ending in 'l' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Bokmål'@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$')) .
} |
find noun endings in Basque with the letter 'l' | 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, 'l$')) .
} |
seek noun terms in Czech that conclude with 'm' | 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, 'm$')) .
} |
discover demonstrative pronoun words in Proto-Indo-European with 'ó' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Proto-Indo-European'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'demonstrative pronoun'@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 Breton with the letter 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Breton'@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 German ending with 'y' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@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$')) .
} |
search verb forms in French with the suffix 'r' | 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, 'r$')) .
} |
find noun words in Mongolian ending with the letter 'а' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Mongolian'@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 verb forms in Yiddish with the suffix 'ב' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Yiddish'@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, 'ב$')) .
} |
search adjective forms in French with the suffix 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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$')) .
} |
seek verb terms in Swedish ending with 'å' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Swedish'@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 idiom forms in Russian ending with “и” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Russian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'idiom'@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 Portuguese with the letter 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@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$')) .
} |
find suffix words in English ending with the letter 's' | 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, 's$')) .
} |
seek preposition terms in Polish that conclude with 'z' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@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, 'z$')) .
} |
search noun forms in Latin with the suffix 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@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 noun forms in German ending with “s” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@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$')) .
} |
discover pronoun endings in English with 'e' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'pronoun'@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 formal subject terms in Danish that conclude with 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Danish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'formal subject'@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 proper noun forms in Polish with endings like 'ł' | 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, 'ł$')) .
} |
find noun endings in Polish with the letter 'ą' | 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, 'ą$')) .
} |
seek proper noun terms in German that conclude with ''' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@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 proper noun forms in Maltese ending with “u” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Maltese'@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, 'u$')) .
} |
seek noun terms in French that conclude with 'r' | 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, 'r$')) .
} |
find noun endings in Arabic with the letter 'ب' | 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, 'ب$')) .
} |
find noun words in Czech ending with the letter 'ě' | 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, 'ě$')) .
} |
seek proper noun terms in Polish ending with 'i' | 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, 'i$')) .
} |
find grammatical particle endings in Polish with the letter 'ś' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'grammatical particle'@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 Russian that conclude with 'ы' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Russian'@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 noun terms in Kurmanji that conclude with 'ۆ' | 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, 'ۆ$')) .
} |
discover proper noun endings in English with 'y' as the final | 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, 'y$')) .
} |
seek letter terms in Malayalam that conclude with 'ആ' | 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 preposition words in French ending with the letter 'c' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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, 'c$')) .
} |
discover noun words in Swedish with 'v' at the end | 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, 'v$')) .
} |
find noun endings in Finnish with the letter 'ä' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Finnish'@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 Punjabi with the letter 'ے' | 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 noun forms in Polish with endings like 'ń' | 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, 'ń$')) .
} |
locate noun forms in Swedish with endings like 'l' | 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, 'l$')) .
} |
find coordinating conjunction forms in Punjabi ending with “” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'coordinating conjunction'@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 pronoun forms in Latin with endings like 'o' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'pronoun'@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 adjective endings in Proto-Germanic with 'z' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Proto-Germanic'@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, 'z$')) .
} |
search for symbol forms in English ending in 'U' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'symbol'@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$')) .
} |
find noun words in Proto-Germanic ending with the letter '-' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Proto-Germanic'@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 noun forms in Northern Sami with endings like 'd' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Northern Sami'@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$')) .
} |
find preposition forms in New Persian ending with “ا” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'New Persian'@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, 'ا$')) .
} |
search for name suffix forms in English ending in 'I' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'name 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, 'I$')) .
} |
find verb endings in Persian with the letter 'د' | 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, 'د$')) .
} |
locate personal pronoun forms in Nynorsk with endings like 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'personal pronoun'@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 personal pronoun forms in Spanish ending with “l” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Spanish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'personal pronoun'@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$')) .
} |
find verb forms in Swedish ending with “v” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Swedish'@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, 'v$')) .
} |
locate verb words in Hebrew ending with 'ב' | 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, 'ב$')) .
} |
find adjective words in French ending with the letter 'd' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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, 'd$')) .
} |
discover verb words in Yiddish with 'ר' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Yiddish'@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 noun words in Thai ending with 'ำ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Thai'@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 adverb terms in English ending with '7' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@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, '7$')) .
} |
search for verb forms in Dagbani ending in 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Dagbani'@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$')) .
} |
find adjective forms in English ending with “w” | 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, 'w$')) .
} |
discover prepositional locution endings in French with 'e' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'prepositional 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, 'e$')) .
} |
search noun forms in Breton with the suffix 'ô' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Breton'@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 proper noun words in French ending with the letter 't' | 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, 't$')) .
} |
locate verb words in Japanese ending with 'よ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Japanese'@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 suffix forms in Polish ending with “u” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@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, 'u$')) .
} |
seek noun terms in English ending with ''' | 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, '\'$')) .
} |
search verb forms in Punjabi with the suffix 'ੇ' | 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, 'ੇ$')) .
} |
discover preposition words in Nynorsk with 'm' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@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, 'm$')) .
} |
search for determiner forms in Nynorsk ending in 't' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'determiner'@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 verb endings in Latin with the letter 'i' | 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, 'i$')) .
} |
find noun forms in Czech ending with “d” | 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, 'd$')) .
} |
locate verb words in French ending with 'a' | 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, 'a$')) .
} |
search adjective forms in English with the suffix 'i' | 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, 'i$')) .
} |
search for numeral forms in Standard Mandarin ending in '一' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Standard Mandarin'@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 Korean with the letter '화' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Korean'@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 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, 'ഉ$')) .
} |
discover noun words in Torwali with 'ی' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Torwali'@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