query-c0635e562f486da57b781eff7274a0a3

rq turtle/ttl

radio progams that are distributed as audio podcasts

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?radioprogram ?radioprogramLabel ?radioprogramDescription ?languageLabel
WHERE
{
    ?radioprogram wdt:P31 wd:Q1555508
        ; wdt:P437 wd:Q24633474
        ; wdt:P407 ?language .
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
ORDER BY ?radioprogramLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?language") v2("?radioprogram"):::projected v1("?radioprogramLabel"):::projected c4(["wd:Q24633474"]):::iri c7(["bd:serviceParam"]):::iri c2(["wd:Q1555508"]):::iri c9(["en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P437"--> c4 v2 --"wdt:P407"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end