query-2f99190e33ff5f10229724bc37f11a41
title:All adverbs in Malayalam missing a pronunciation SELECT ?id ?label WHERE { ?id dct:language wd:Q36236; wikibase:lexicalCategory wd:Q380057; wikibase:lemma ?label. MINUS { ?id wdt:P443 ?audio. } } LIMIT 300
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 dct: <http://purl.org/dc/terms/>
#title:All adverbs in Malayalam missing a pronunciation
SELECT ?id ?label WHERE {
?id dct:language wd:Q36236;
wikibase:lexicalCategory wd:Q380057;
wikibase:lemma ?label.
MINUS { ?id wdt:P443 ?audio. }
}
LIMIT 300
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?audio")
v1("?id"):::projected
v2("?label"):::projected
c2(["wd:Q36236"]):::iri
c4(["wd:Q380057"]):::iri
v1 --"dct:language"--> c2
v1 --"wikibase:lexicalCategory"--> c4
v1 --"wikibase:lemma"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P443"--> v3
end