query-ffd6590ba01cfce5d9cf1505fb92f2a1
ItemsMalayalam (Q36236)verb (Q24905)simple future (Q1475560)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT DISTINCT ?l ?lemma WHERE {
?l a ontolex:LexicalEntry ;
dct:language wd:Q36236 ;
wikibase:lexicalCategory wd:Q24905 ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word ;
minus {
{?l a ontolex:LexicalEntry ; ontolex:lexicalForm/wikibase:grammaticalFeature wd:Q1475560 .}
}.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?form")
v1("?l"):::projected
v2("?lemma"):::projected
v4("?word")
a1((" "))
c11(["wd:Q1475560"]):::iri
c4(["wd:Q36236"]):::iri
c2(["ontolex:LexicalEntry"]):::iri
c6(["wd:Q24905"]):::iri
v1 --"a"--> c2
v1 --"dct:language"--> c4
v1 --"wikibase:lexicalCategory"--> c6
v1 --"wikibase:lemma"--> v2
v1 --"ontolex:lexicalForm"--> v3
v3 --"ontolex:representation"--> v4
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"a"--> c2
v1 --"ontolex:lexicalForm"--> a1
a1 --"wikibase:grammaticalFeature"--> c11
end