utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
discover verb endings in Breton with 'i' 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, 'i$')) .
} |
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 verb words in Punjabi ending 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, 'ੂ$')) .
} |
search for adjective forms in Japanese ending in 'れ' | 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, 'れ$')) .
} |
discover noun words in Swedish with 'g' 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, 'g$')) .
} |
search noun forms in New Persian with the suffix 'б' | 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, 'б$')) .
} |
locate affix words in Danish ending with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Danish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'affix'@en }.
?qitemPos 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 words in Latin with 's' at the end | 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, 's$')) .
} |
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, 'ę$')) .
} |
seek adjective terms in Georgian ending with 'ე' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Georgian'@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 nominal locution 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 { '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, 'j$')) .
} |
find verb forms in Bokmål ending with “e” | 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, 'e$')) .
} |
search for verb forms in Kurmanji ending in 'm' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Kurmanji'@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$')) .
} |
find proper noun forms in Vietnamese ending with “.” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Vietnamese'@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 adjective words in English with 's' at the end | 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, 's$')) .
} |
locate noun 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 { '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 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, 'ഴ$')) .
} |
locate noun words in Danish ending with 'e' | 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, 'e$')) .
} |
search for preposition forms in English ending in 'e' | 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, 'e$')) .
} |
find noun words in Northern Sami ending with the letter 't' | 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, 't$')) .
} |
discover noun words in Turkish with 'و' at the end | 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, 'و$')) .
} |
seek adjective terms in Portuguese that conclude with 's' | 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, 's$')) .
} |
search for verb forms in Japanese ending in 'う' | 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, 'う$')) .
} |
discover interjection words in Danish with 'v' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Danish'@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, 'v$')) .
} |
seek 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 { '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 verb forms in Danish ending in 'ø' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Danish'@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 suffix words in Polish with 'h' at the end | 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, 'h$')) .
} |
discover adjective endings in Portuguese with 'a' as the final | 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, 'a$')) .
} |
discover conjunction words in Japanese with 'ら' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Japanese'@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, 'ら$')) .
} |
seek adjective terms in Latin that conclude with 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@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, 'a$')) .
} |
find noun forms in Swedish ending with “r” | 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, 'r$')) .
} |
locate noun words in Aragonese ending with 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Aragonese'@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 adjective forms in French with the suffix 'x' | 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, 'x$')) .
} |
seek noun terms in Arabic ending with 'ٌ' | 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 noun terms in Finnish that conclude with 'n' | 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, 'n$')) .
} |
discover demonstrative pronoun endings in Proto-Indo-European with 'd' as the final | 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, 'd$')) .
} |
find noun words in Upper Sorbian ending with the letter 'u' | 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, 'u$')) .
} |
locate proper noun 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 { '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 article 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 { '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, 'ַ$')) .
} |
find verb forms in Portuguese ending with “á” | 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, 'á$')) .
} |
locate proper 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 { '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 forms in English with endings like 'h' | 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, 'h$')) .
} |
find noun endings in Sumerian with the letter 'b' | 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, 'b$')) .
} |
find proverb words in Latin ending with the letter 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@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$')) .
} |
discover proper noun endings in Scots with 'n' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Scots'@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 adjective 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 { '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$')) .
} |
search for noun forms in Polish ending in 'ś' | 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 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, 'ഡ$')) .
} |
locate adjective words in Italian ending with 'a' | 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, 'a$')) .
} |
find definite article words in French ending with the letter ''' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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, '\'$')) .
} |
search verb forms in Kurmanji with the suffix 'ن' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Kurmanji'@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 numeral 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 { '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, 's$')) .
} |
seek noun terms in French that conclude with 't' | 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, 't$')) .
} |
discover prefix endings in German with '-' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@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, '-$')) .
} |
seek suffix terms in Finnish that conclude with 'ö' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Finnish'@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, 'ö$')) .
} |
locate adverb words 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 { '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, '一$')) .
} |
discover noun endings in Standard Mandarin with '荼' as the final | 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, '荼$')) .
} |
find noun 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 { '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$')) .
} |
locate adjective 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 { '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$')) .
} |
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, 'ו$')) .
} |
discover suffix endings in German with 'a' as the final | 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, 'a$')) .
} |
seek noun terms in English that conclude with 'k' | 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, 'k$')) .
} |
seek adjective terms in Ukrainian ending 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 interjection words in French with 'u' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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, 'u$')) .
} |
discover personal pronoun words in Cantonese with '佢' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Cantonese'@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, '佢$')) .
} |
seek noun terms in Arabic that conclude with 'ة' | 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, 'ة$')) .
} |
locate noun forms in Maltese with endings like 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Maltese'@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$')) .
} |
seek adverb terms in English that conclude with 's' | 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, 's$')) .
} |
search noun forms in Finnish with the suffix 'o' | 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, 'o$')) .
} |
find adjective forms in Swedish ending with “a” | 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, 'a$')) .
} |
locate adjective forms in Nynorsk with endings like 'l' | 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, 'l$')) .
} |
find noun endings in Wymysorys with the letter 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Wymysorys'@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 noun endings in Upper Sorbian with the letter 'j' | 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, 'j$')) .
} |
locate noun words in Kurmanji ending 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, 'ک$')) .
} |
find pronoun forms 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, 'و$')) .
} |
locate postposition words in Punjabi ending with 'ੈ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'postposition'@en }.
?qitemPos 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 English with 't' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@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, 't$')) .
} |
seek verb terms in Japanese that conclude 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, 'く$')) .
} |
seek grammatical particle terms in Polish ending with 'k' | 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, 'k$')) .
} |
seek personal pronoun terms in Catalan that conclude with 'a' | 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, 'a$')) .
} |
discover noun endings in Maltese with 'b' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Maltese'@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$')) .
} |
search pronoun forms in Portuguese with the suffix 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@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$')) .
} |
discover verb 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 { '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 noun 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 { '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 adverb terms in Nynorsk ending with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@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, 'e$')) .
} |
find noun words in Latin ending with the letter 'a' | 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, 'a$')) .
} |
find verb forms 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 noun endings in Hungarian with the letter 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Hungarian'@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 suffix endings in Polish with the letter 'o' | 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, 'o$')) .
} |
discover noun words in Breton with 'n' at the end | 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, 'n$')) .
} |
find verb 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 { '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, 'w$')) .
} |
locate noun forms in Swedish with endings like 'n' | 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, 'n$')) .
} |
seek demonstrative pronoun terms in Arabic that conclude with 'ا' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Arabic'@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 Estonian with the letter 'l' | 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, 'l$')) .
} |
discover adjective words in German with 'l' at the end | 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, 'l$')) .
} |
search for adjective forms in Japanese ending in 'く' | 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 determiner forms in English ending in 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@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, 'e$')) .
} |
discover noun words in French with 'g' 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, 'g$')) .
} |
discover preposition endings in Danish with 'r' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Danish'@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$')) .
} |
discover numeral endings in English with 'd' as the final | 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, 'd$')) .
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.