query-0dc3c53487a14d4225fe3af397f6f022
title:All forms in Hebrew missing a pronunciation for the form with a representation identical to the lemma of the lexeme
So9q 13-01-2021
SELECT ?l ?lemma ?form ?audio WHERE { ?l dct:language wd:Q9288; wikibase:lemma ?lemma; ontolex:lexicalForm ?form . ?form ontolex:representation ?lemma . MINUS {?form wdt:P443 ?audio.} }
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:All forms in Hebrew missing a pronunciation for the form with a representation identical to the lemma of the lexeme
# So9q 13-01-2021
SELECT ?l ?lemma ?form ?audio WHERE {
?l dct:language wd:Q9288;
wikibase:lemma ?lemma;
ontolex:lexicalForm ?form .
?form ontolex:representation ?lemma .
MINUS {?form wdt:P443 ?audio.}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?audio"):::projected
v3("?form"):::projected
v1("?l"):::projected
v2("?lemma"):::projected
c2(["wd:Q9288"]):::iri
v1 --"dct:language"--> c2
v1 --"wikibase:lemma"--> v2
v1 --"ontolex:lexicalForm"--> v3
v3 --"ontolex:representation"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P443"--> v4
end