query-95a8c72f3dd0e1e1b9e94d1e12d3b5c5
podcast programs
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?podcast ?podcastLabel ?podcastDescription ?languageLabel
WHERE
{
?podcast wdt:P31 wd:Q24634210
; wdt:P407 ?language .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
ORDER BY ?podcastLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?language")
v2("?podcast"):::projected
v1("?podcastLabel"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c2(["wd:Q24634210"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P407"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end