utterance
stringlengths
10
893
template_name
stringclasses
191 values
template
stringlengths
74
1.45k
discover noun words in Czech with 'u' at the end
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, 'u$')) . }
discover verb endings in Swedish with 's' as the final
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, 's$')) . }
find proper noun words in Japanese ending with the letter '口'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Japanese'@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 German ending in 'n'
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, 'n$')) . }
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 English that conclude with 'N'
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, 'N$')) . }
find nominal locution forms in French ending with “r”
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, 'r$')) . }
locate verb forms in English with endings like 'r'
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, 'r$')) . }
find adjective words in Swedish ending with the letter 'k'
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, 'k$')) . }
search noun forms in Saraiki with the suffix 'ہ'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Saraiki'@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 for adjective forms in Danish ending in 'g'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Danish'@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, 'g$')) . }
locate verb words in German ending with 't'
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, 't$')) . }
find noun words in Czech ending with the letter 's'
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, 's$')) . }
discover noun words in Finnish with 'ö' at the end
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, 'ö$')) . }
locate noun words in Polish ending with 'j'
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, 'j$')) . }
find noun words in Punjabi ending with the letter 'ੀ'
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, 'ੀ$')) . }
discover prefix words in Korean with '늦' at the end
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Korean'@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, '늦$')) . }
discover noun endings in Spanish with 'l' as the final
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Spanish'@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$')) . }
search noun forms in Croatian with the suffix 'e'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Croatian'@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 verb words in Spanish with 'á' at the end
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Spanish'@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 symbol words in English with 'u' at the end
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$')) . }
locate personal pronoun forms in Catalan with endings like 'i'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Catalan'@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, 'i$')) . }
seek numeral terms in Dutch that conclude with 'd'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Dutch'@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, 'd$')) . }
discover verb endings in Portuguese with 'u' as the final
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, 'u$')) . }
find noun endings in English with the letter 'd'
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, 'd$')) . }
discover verb words in Bokmål with 't' at the end
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, 't$')) . }
locate noun words in Czech ending with 'é'
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 verb terms in Bokmål ending with 'l'
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, 'l$')) . }
search for verb forms in Nynorsk ending in 'g'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Nynorsk'@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$')) . }
find proper noun endings in Japanese with the letter 'ち'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Japanese'@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 conjunction words in French ending with 'e'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'French'@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, 'e$')) . }
seek adjective 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 { '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$')) . }
search noun 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 { '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 Standard Mandarin ending with 'ū'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Standard Mandarin'@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 proverb words in English ending with 's'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'English'@en }. ?qitemLang rdfs:label ?lang . VALUES ?pos { 'proverb'@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 noun forms in Italian ending in 'í'
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, 'í$')) . }
seek adverb terms in Danish ending with 'k'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Danish'@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, 'k$')) . }
seek adverb terms in English ending with 't'
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, 't$')) . }
discover verb endings in Breton with 'h' as the final
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, 'h$')) . }
search for conjunction forms in German ending in 'e'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'German'@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, 'e$')) . }
locate letter words in Malayalam ending 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, 'ശ$')) . }
discover preposition words in Italian with 'a' at the end
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Italian'@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$')) . }
discover prefix 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 { '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, 'e$')) . }
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, 'ഇ$')) . }
search for noun forms in Slovak ending in 'e'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Slovak'@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$')) . }
locate verb words in Yiddish ending with 'ק'
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 forms in Danish with endings like 'g'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Danish'@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$')) . }
search nominal locution forms in Polish with the suffix 'm'
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, 'm$')) . }
seek pronoun terms in English that conclude with 'n'
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, 'n$')) . }
seek adjective 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 { '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 interjection words in English ending with 'h'
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, 'h$')) . }
discover verb endings in Polish with 'ć' as the final
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, 'ć$')) . }
find noun forms in Scots ending with “r”
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Scots'@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 verb words in Arabic ending with the letter 'د'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Arabic'@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 for adverb forms in French ending in 's'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'French'@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, 's$')) . }
seek noun terms in Croatian that conclude with 'j'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Croatian'@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, 'j$')) . }
discover proper noun words in Polish with 'l' at the end
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, 'l$')) . }
find noun words in Estonian ending with the letter 'r'
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, 'r$')) . }
locate noun forms in Japanese with endings like 'と'
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, 'と$')) . }
discover noun 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 { '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 adjective endings in Czech with the letter 'ý'
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, 'ý$')) . }
locate noun words in English ending with 'b'
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, 'b$')) . }
discover proper noun endings in Punjabi with 'ਾ' as the final
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 noun terms in Kurmanji ending with 't'
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, 't$')) . }
discover adjective words in French with 'n' at the end
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, 'n$')) . }
seek noun terms in English ending with 's'
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, 's$')) . }
seek adjectival suffix terms in English ending with 'c'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'English'@en }. ?qitemLang rdfs:label ?lang . VALUES ?pos { 'adjectival 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, 'c$')) . }
seek noun 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 { '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 adjective terms in French ending with 'f'
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, 'f$')) . }
find adjective endings in French with the letter 'l'
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, 'l$')) . }
find noun endings in German with the letter 'e'
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, 'e$')) . }
discover noun endings in French with 'p' as the final
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, 'p$')) . }
search for noun forms in Sumerian ending in 'a'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Sumerian'@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$')) . }
search for definite article forms in Italian ending in 'i'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Italian'@en }. ?qitemLang rdfs:label ?lang . VALUES ?pos { 'definite 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, 'i$')) . }
search noun forms in Turkish with the suffix 'u'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Turkish'@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$')) . }
find proper noun forms in German ending with “i”
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, 'i$')) . }
seek pronoun terms in Malay ending with 'ي'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Malay'@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, 'ي$')) . }
seek prepositional locution terms in French ending with 's'
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, 's$')) . }
seek noun terms in Breton ending with 'h'
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, 'h$')) . }
find verb forms in Swedish ending with “t”
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, 't$')) . }
locate preposition forms in Latin with endings like 'n'
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, 'n$')) . }
locate adjective words in Danish ending with 't'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Danish'@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, 't$')) . }
seek preposition terms in Malay that conclude with 'g'
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, 'g$')) . }
find preposition forms in Nynorsk ending with “r”
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, 'r$')) . }
locate adjective forms in Russian with endings like 'х'
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, 'х$')) . }
discover adjective words in Nynorsk with 'n' at the end
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, 'n$')) . }
locate proper noun 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 { '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 verb endings in Nynorsk with 'n' as the final
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Nynorsk'@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, 'n$')) . }
search noun 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 { '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 verb terms in Russian ending with 'ь'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Russian'@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 conjunction endings in French with 'd' as the final
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'French'@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, 'd$')) . }
find verb forms in Swedish ending with “e”
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, 'e$')) . }
find proper noun forms in Polish ending with “o”
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, 'o$')) . }
discover noun words in Czech with 'r' at the end
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, 'r$')) . }
find proper noun 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 { '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 noun words in German ending with 'u'
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, 'u$')) . }
locate noun words in Polish ending with 'o'
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, 'o$')) . }
find numeral words in English ending with the letter 'n'
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'English'@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$')) . }
find verb forms in Spanish ending with “d”
a3
SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word WHERE { VALUES ?lang { 'Spanish'@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, 'd$')) . }
search for numeral forms in Russian ending in 'й'
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, 'й$')) . }