query-92cd908db3c5f65aa92c465f83fdf0b5

rq turtle/ttl

Propertiespronunciation audio (P443)

Use at

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/>
SELECT DISTINCT
(CONCAT("https://ordia.toolforge.org/search?", "language=",  ENCODE_FOR_URI(LANG(?lemma)), "&q=", ENCODE_FOR_URI(STR(?lemma))) AS ?Url2)
WHERE {
  ?lexeme dct:language wd:Q188 .
  FILTER NOT EXISTS { ?lexeme wdt:P443 ?prununciation_audio. }
      ?lexeme wikibase:lemma ?lemma ;              
       wikibase:lexicalCategory wd:Q1084 .
       FILTER REGEX(LCASE(?lemma), "klima")
}
LIMIT 500

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?Url2") v1("?lemma"):::projected v2("?lexeme") v3("?prununciation_audio") c7(["wd:Q1084"]):::iri c4(["wd:Q188"]):::iri f0[["regex(lower-case(?lemma),'klima')"]] f0 --> v1 f1[["not "]] subgraph f1e0["Exists Clause"] e0v1 --"wdt:P443"--> e0v2 e0v1("?lexeme"):::projected e0v2("?prununciation_audio"):::projected end f1--EXISTS--> f1e0 f1 --> v2 f1 --> c2 f1 --> v3 v2 --"wdt:P443"--> v3 v2 --"dct:language"--> c4 v2 --"wikibase:lemma"--> v1 v2 --"wikibase:lexicalCategory"--> c7 bind2[/"concat('https://ordia.toolforge.org/search?','language=',encode-for-uri(?lemma),'&q=',encode-for-uri(str(?lemma)))"/] v1 --o bind2 bind2 --as--o v4