query-4fb6fbc524c2dbe5ccc053fb98bf146e

rq turtle/ttl

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 ?label ?id ?audio WHERE { ?l dct:language wd:Q9288; wikibase:lemma ?label; ontolex:lexicalForm ?id . ?id ontolex:representation ?label . MINUS {?id wdt:P443 ?audio.} } LIMIT 100

Use at

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 ?label ?id ?audio WHERE {
  ?l dct:language wd:Q9288;
     wikibase:lemma ?label; 
     ontolex:lexicalForm ?id .
  ?id ontolex:representation ?label .
  MINUS {?id wdt:P443 ?audio.}
} LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?audio"):::projected v3("?id"):::projected v1("?l"):::projected v2("?label"):::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