utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
discover preposition endings in English with 'h' as the final | 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, 'h$')) .
} |
seek proper noun terms in Punjabi that conclude with 'ਂ' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Punjabi'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ਂ$')) .
} |
find adjective words in Italian ending with the letter 'o' | 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, 'o$')) .
} |
locate noun words in Kurmanji ending with 'k' | 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, 'k$')) .
} |
find adjective 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 { '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 noun forms in Igbo with the suffix 'i' | 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, 'i$')) .
} |
search for noun forms in Polish ending in 'n' | 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, 'n$')) .
} |
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, 'ت$')) .
} |
find verb words in Korean ending with the letter '다' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Korean'@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 conjunction terms in Portuguese that conclude with 'o' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@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, 'o$')) .
} |
search for adjective forms in Polish ending in 'o' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'o$')) .
} |
search proper noun forms in Polish with the suffix 'y' | 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, 'y$')) .
} |
find conjunction 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 { '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$')) .
} |
find verb endings in Kurmanji with the letter 'î' | 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 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, 'ن$')) .
} |
search for noun 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 { '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 personal pronoun forms in French ending in 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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, 'n$')) .
} |
find noun forms in Upper Sorbian ending with “e” | 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, 'e$')) .
} |
discover noun words in Malayalam with 'ഥ' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Malayalam'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ഥ$')) .
} |
find pronoun endings in Nynorsk with the letter 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@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$')) .
} |
locate onomatopoeia words in Russian ending with 'у' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Russian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'onomatopoeia'@en }.
?qitemPos 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 Polish ending with 'h' | 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, 'h$')) .
} |
seek adverb terms in Standard Mandarin that conclude 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, 'í$')) .
} |
find noun words in Basque ending with the letter 't' | 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, 't$')) .
} |
search for noun forms in Hindustani ending in 'य' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Hindustani'@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 interrogative pronoun words in Latin ending with 'd' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'interrogative 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$')) .
} |
locate grammatical particle 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 { '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, 'ù$')) .
} |
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, 'ഃ$')) .
} |
find noun words in German ending with the letter 'v' | 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, 'v$')) .
} |
locate preposition words 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, 'р$')) .
} |
seek proper noun terms in Latin that conclude with 's' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Latin'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'proper noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 's$')) .
} |
seek definite article terms in English that conclude with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { '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, 'e$')) .
} |
find verb 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 { '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 Korean ending with “차” | 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, '차$')) .
} |
search noun forms in Ancient Greek with the suffix 'ή' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Ancient Greek'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ή$')) .
} |
discover adjective 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 { 'adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'u$')) .
} |
seek abbreviation terms in Swedish that conclude with 'r' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Swedish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'abbreviation'@en }.
?qitemPos 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 preposition words in German with 'e' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@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$')) .
} |
locate adjective forms in English with endings like 'g' | 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, 'g$')) .
} |
discover noun words in Ukrainian with 'м' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Ukrainian'@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 words in Nynorsk ending with the letter 's' | 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, 's$')) .
} |
seek verb terms 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, 'ה$')) .
} |
seek noun terms in Kurmanji that conclude with 'm' | 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, 'm$')) .
} |
search noun forms in Japanese with the suffix '月' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Japanese'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { '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 Russian ending 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 Standard Mandarin ending with 'u' | 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, 'u$')) .
} |
locate verb forms in Polish with endings like 'o' | 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, 'o$')) .
} |
seek verb terms 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 letter words in Malayalam ending with the letter 'റ' | 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 personal pronoun 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 { '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, 'れ$')) .
} |
search noun forms in Bokmål with the suffix 'n' | 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, 'n$')) .
} |
find letter forms 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, 'ധ$')) .
} |
search noun forms in Yaeyama with the suffix '猫' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Yaeyama'@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 proper noun forms in Vietnamese with the suffix 'n' | 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, 'n$')) .
} |
discover noun words in Northern Sami with 'e' at the end | 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, 'e$')) .
} |
discover noun endings in Mongolian with 'ᠮ' as the final | 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, 'ᠮ$')) .
} |
locate noun words in English ending with 'E' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'E$')) .
} |
discover adjective words in Russian with 'ю' at the end | 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 demonstrative pronoun endings in Arabic with 'ه' as the final | 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, 'ه$')) .
} |
seek suffix terms in French ending with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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, 'e$')) .
} |
seek verb terms in Latin ending with 'm' | 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, 'm$')) .
} |
discover adjective words in Nynorsk with 'g' 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, 'g$')) .
} |
seek noun terms in Maltese ending with 'i' | 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, 'i$')) .
} |
locate noun forms in Swedish with endings like 'a' | 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, 'a$')) .
} |
find noun words in English ending with the letter 'i' | 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, 'i$')) .
} |
find noun words in French ending with the letter 'x' | 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, 'x$')) .
} |
discover letter endings in Malayalam with 'ഥ' as the final | 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, 'ഥ$')) .
} |
seek verb terms in French that conclude with 'i' | 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, 'i$')) .
} |
search for preposition 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 { '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 noun forms in Kurmanji with the suffix 'a' | 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, 'a$')) .
} |
find noun forms in Aragonese ending with “a” | 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, 'a$')) .
} |
discover project:Sandbox endings in project:Sandbox with '5' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'project:Sandbox'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'project:Sandbox'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, '5$')) .
} |
discover noun words in Spanish with 'o' at the end | 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, 'o$')) .
} |
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, 'о$')) .
} |
seek proper noun terms in Czech ending with 'u' | 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, 'u$')) .
} |
find determiner endings in Nynorsk with the letter 'o' | 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, 'o$')) .
} |
seek verb terms in Danish ending with 'g' | 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, 'g$')) .
} |
locate proper adjective 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 { 'proper 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, 'h$')) .
} |
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, 'ര$')) .
} |
search verb forms in Persian with the suffix 'ن' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Persian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ن$')) .
} |
find noun 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 { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ů$')) .
} |
find noun forms in German ending with “m” | 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, 'm$')) .
} |
search for proper noun forms in Polish ending in 'd' | 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, 'd$')) .
} |
search for preposition forms in Malay ending in 'ڠ' | 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, 'ڠ$')) .
} |
find verb words in English ending with the letter 'h' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { '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$')) .
} |
discover noun endings in Haitian Creole with 'è' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Haitian Creole'@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 numeral words in Standard Mandarin ending with the letter 'ī' | 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 forms 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, '茶$')) .
} |
discover abbreviation words in American Sign Language with '?' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'American Sign Language'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'abbreviation'@en }.
?qitemPos 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 preposition words in French ending with ''' | 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, '\'$')) .
} |
locate adjective words in Vietnamese ending with 'h' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Vietnamese'@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, 'h$')) .
} |
search verb forms in Danish with the suffix 'å' | 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 idiom endings in Russian with 'е' as the final | 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 Japanese particle 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 { 'Japanese 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, 'も$')) .
} |
find conjunction endings in English with the letter 's' | 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, 's$')) .
} |
discover verb endings in English with 'o' as the final | 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, 'o$')) .
} |
locate noun forms in Modern Greek with endings like 'ν' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Modern Greek'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ν$')) .
} |
locate proper noun words in German ending with 'g' | 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, 'g$')) .
} |
discover verb 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 { '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$')) .
} |
seek adverb terms in Polish that conclude with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'adverb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.