utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
find nominal suffix forms in English ending with “r” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'nominal suffix'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'r$')) .
} |
find numeral words in Polish ending with the letter 'o' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@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, 'o$')) .
} |
search noun forms in English with the suffix 'o' | 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, 'o$')) .
} |
locate noun forms in German with endings like 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'German'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { '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 noun terms in Turkish that conclude with 'ل' | 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, 'ل$')) .
} |
search noun forms in Danish with the suffix 'j' | 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, 'j$')) .
} |
locate adverb words in French ending with 't' | 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, 't$')) .
} |
find personal pronoun endings in English with the letter 'y' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@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, 'y$')) .
} |
search noun forms in Polish with the suffix 'd' | 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, 'd$')) .
} |
find adverb forms in Polish ending with “m” | 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, 'm$')) .
} |
seek noun terms in French ending with 'c' | 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, 'c$')) .
} |
discover noun words in Bangla with 'ি' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Bangla'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'ি$')) .
} |
discover adjective words in Latin with 'r' at the end | 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, 'r$')) .
} |
locate noun 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 { '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 determiner words in Nynorsk ending with 'e' | 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, 'e$')) .
} |
locate noun words in Japanese ending with '語' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Japanese'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, '語$')) .
} |
search verb forms in Basque with the suffix 'i' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Basque'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'i$')) .
} |
find suffix words in Polish ending with the letter 'a' | 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, 'a$')) .
} |
locate interjection words in Klingon ending with '' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Klingon'@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, '$')) .
} |
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 interjection forms in Klingon ending in ''' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Klingon'@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, '\'$')) .
} |
find preposition forms in German ending with “f” | 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, 'f$')) .
} |
seek suffix 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 { '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$')) .
} |
locate conjunctive locution forms in French with endings like ''' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'conjunctive 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, '\'$')) .
} |
seek verb terms in Hebrew that conclude 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 verb words in Portuguese with 'a' at the end | 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, 'a$')) .
} |
locate adjective words in Japanese ending with 'ル' | 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, 'ル$')) .
} |
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, 'ഢ$')) .
} |
locate adjective words 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, 'е$')) .
} |
find noun endings in Georgian with the letter 'ი' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Georgian'@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 determiner words in English ending with 't' | 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, 't$')) .
} |
search noun forms in Estonian with the suffix 'd' | 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, 'd$')) .
} |
search for noun forms in English ending in 'c' | 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, 'c$')) .
} |
search for noun phrase forms in French ending in 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun phrase'@en }.
?qitemPos 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 proper noun terms in Polish that conclude with 'f' | 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, 'f$')) .
} |
discover noun words in Portuguese with 'a' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@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$')) .
} |
locate noun forms in Basque with endings like 'i' | 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, 'i$')) .
} |
search for affix forms in Swedish ending in 'g' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Swedish'@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, 'g$')) .
} |
discover personal pronoun words in Polish with 'm' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@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, 'm$')) .
} |
seek proper noun terms in Punjabi ending 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, 'ن$')) .
} |
locate preposition words in Portuguese ending with 'a' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@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$')) .
} |
locate personal pronoun words in Esperanto ending with 'n' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Esperanto'@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$')) .
} |
discover adjective words in Saraiki with 'ر' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Saraiki'@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 Croatian ending with 'a' | 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, 'a$')) .
} |
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 pronoun forms in Swedish ending with “m” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Swedish'@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, 'm$')) .
} |
locate noun forms in Arabic with endings like 'ل' | 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, 'ل$')) .
} |
search noun forms in Czech with the suffix 'e' | 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, 'e$')) .
} |
search noun forms in Turkish with the suffix 'ك' | 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, 'ك$')) .
} |
discover preposition endings in Malay with 's' as the final | 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, 's$')) .
} |
discover noun endings in Nynorsk with 'l' as the final | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'l$')) .
} |
find pronoun endings in Portuguese with the letter 'i' | 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, 'i$')) .
} |
locate noun words in Proto-Sino-Tibetan ending with 'w' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Proto-Sino-Tibetan'@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, 'w$')) .
} |
search proper noun forms in Polish with the suffix 'k' | 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, 'k$')) .
} |
find verb words in Spanish ending with the letter 'o' | 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, 'o$')) .
} |
discover preposition endings in New Persian with 'o' as the final | 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, 'o$')) .
} |
search noun forms in English with the suffix 'R' | 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, 'R$')) .
} |
discover numeral words in Proto-Sino-Tibetan with 't' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Proto-Sino-Tibetan'@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, 't$')) .
} |
seek verb terms in French that conclude with 'e' | 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, 'e$')) .
} |
find proper noun forms in Polish ending with “u” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { '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$')) .
} |
locate verb 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 { '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 preposition words in Nynorsk ending with 'å' | 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, 'å$')) .
} |
locate verb 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 { '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$')) .
} |
discover noun endings in New Persian with 'н' as the final | 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 suffix forms in German with endings like 't' | 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, 't$')) .
} |
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, 'ق$')) .
} |
locate noun forms in Basque with endings like 'k' | 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, 'k$')) .
} |
seek indefinite adjective terms in French that conclude with 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'indefinite adjective'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'e$')) .
} |
seek definite article 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 { '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, 's$')) .
} |
find noun forms in Nynorsk ending with “i” | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'i$')) .
} |
seek verb terms in English ending with 'd' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'English'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { '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 noun forms in Basque ending in 'a' | 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, 'a$')) .
} |
search conjunction forms in English with the suffix 'r' | 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, 'r$')) .
} |
seek noun terms in Nynorsk that conclude with 't' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Nynorsk'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'noun'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 't$')) .
} |
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 adjective words in Swedish ending with the letter 'e' | 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, 'e$')) .
} |
locate 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 { '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 pronoun 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 { '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$')) .
} |
discover noun words in Asturian with 's' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Asturian'@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 proper noun words in Danish with 'k' at the end | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Danish'@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, 'k$')) .
} |
find proverb words in Polish ending with the letter 'y' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@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, 'y$')) .
} |
discover verb endings in Spanish with 'ó' as the final | 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, 'ó$')) .
} |
seek 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 { '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 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 verb words in Latin with 'e' at the end | 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, 'e$')) .
} |
search for postposition forms in Punjabi ending in 'ّ' | 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, 'ّ$')) .
} |
search for personal pronoun 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 { '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$')) .
} |
locate numeral forms in Polish with endings like 'i' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Polish'@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, 'i$')) .
} |
seek noun terms in German that conclude with 'l' | 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, 'l$')) .
} |
find proper noun words in Polish ending with the letter 'j' | 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, 'j$')) .
} |
seek numeral terms in Korean that conclude with '百' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Korean'@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 preposition endings in Malay with the letter 'ي' | 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 forms in Danish ending with “v” | 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, 'v$')) .
} |
locate 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 { '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 verb terms in Persian that conclude with 'م' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Persian'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'م$')) .
} |
discover noun endings in Japanese with 'い' as the final | 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, 'い$')) .
} |
locate verb 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 { 'verb'@en }.
?qitemPos rdfs:label ?pos .
?lexeme a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lexicalCategory ?qitemPos ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm [ ontolex:representation ?word ] .
FILTER (regex(?word, 'お$')) .
} |
locate noun words in Ukrainian ending with 'я' | 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, 'я$')) .
} |
locate demonstrative pronoun forms in French with endings like 'x' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'French'@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, 'x$')) .
} |
find noun endings in Portuguese with the letter 'e' | a3 | SELECT DISTINCT ?lexeme ?qitemPos ?pos ?lemma ?word
WHERE
{
VALUES ?lang { 'Portuguese'@en }.
?qitemLang rdfs:label ?lang .
VALUES ?pos { '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$')) .
} |
Subsets and Splits