query-15bc1b75b2562925953c7a1310be2b23
TODO
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 ?form ?word WHERE {
?l a ontolex:LexicalEntry ; dct:language wd:Q7838 ; wikibase:lexicalCategory wd:Q1084 ; ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
FILTER NOT EXISTS {?form wikibase:grammaticalFeature ?item }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?form"):::projected
v2("?item")
v3("?l")
v4("?word"):::projected
c5(["wd:Q7838"]):::iri
c3(["ontolex:LexicalEntry"]):::iri
c7(["wd:Q1084"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wikibase:grammaticalFeature"--> e0v2
e0v1("?form"):::projected
e0v2("?item"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"wikibase:grammaticalFeature"--> v2
v3 --"a"--> c3
v3 --"dct:language"--> c5
v3 --"wikibase:lexicalCategory"--> c7
v3 --"ontolex:lexicalForm"--> v1
v1 --"ontolex:representation"--> v4