query-98c8551a80565af737b243575a7e9da3
title:Nouns without grammatical gender SELECT ?l ?lemma WHERE { ?l a ontolex:LexicalEntry ; dct:language wd:Q9027 ; wikibase:lexicalCategory wd:Q1084 ; wikibase:lemma ?lemma . MINUS { ?l wdt:P5185 [] } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
#title:Nouns without grammatical gender
SELECT ?l ?lemma WHERE {
?l a ontolex:LexicalEntry ; dct:language wd:Q9027 ; wikibase:lexicalCategory wd:Q1084 ; wikibase:lemma ?lemma .
MINUS { ?l wdt:P5185 [] }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?l"):::projected
v2("?lemma"):::projected
a1((" "))
c4(["wd:Q9027"]):::iri
c2(["ontolex:LexicalEntry"]):::iri
c6(["wd:Q1084"]):::iri
v1 --"a"--> c2
v1 --"dct:language"--> c4
v1 --"wikibase:lexicalCategory"--> c6
v1 --"wikibase:lemma"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P5185"--> a1
end