query-e8f930445ef488ffd49329c94d607e15
title:Forms without grammatical features SELECT ?l ?lemma ?form WHERE { hint:Query hint:optimizer "None". ?l dct:language wd:Q9027 ; wikibase:lemma ?lemma; ontolex:lexicalForm ?f . MINUS { ?f wikibase:grammaticalFeature [] } ?f ontolex:representation ?form . }
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/>
#title:Forms without grammatical features
SELECT ?l ?lemma ?form WHERE {
?l dct:language wd:Q9027 ;
wikibase:lemma ?lemma;
ontolex:lexicalForm ?f .
MINUS { ?f wikibase:grammaticalFeature [] }
?f ontolex:representation ?form .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?f")
v4("?form"):::projected
v1("?l"):::projected
v2("?lemma"):::projected
a1((" "))
c2(["wd:Q9027"]):::iri
v1 --"dct:language"--> c2
v1 --"wikibase:lemma"--> v2
v1 --"ontolex:lexicalForm"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wikibase:grammaticalFeature"--> a1
end
v3 --"ontolex:representation"--> v4