query-739e3905ec282a7ba8f4dbe1635b120c
TODO
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 ?work ?workLabel ?language ?languageLabel WHERE {
?work wdt:P31 wd:Q47461344 ;
wdt:P50 wd:Q82925.
?work wdt:P407 ?language.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?language"):::projected
v1("?work"):::projected
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q82925"]):::iri
c2(["wd:Q47461344"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P50"--> c4
v1 --"wdt:P407"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end