query-4477d2b9799fab50b845fe7e9af49695
ItemsTamil (Q5885)noun (Q1084)accusative case (Q146078)
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:Q5885;
wikibase:lexicalCategory wd:Q1084;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word ;
minus {
{?l a ontolex:LexicalEntry ; ontolex:lexicalForm/wikibase:grammaticalFeature wd:Q146078.}
}.
}
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((" "))
c2(["ontolex:LexicalEntry"]):::iri
c6(["wd:Q1084"]):::iri
c4(["wd:Q5885"]):::iri
c11(["wd:Q146078"]):::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