query-2cdb1cd96c5a40182c3a6607f5a7ba98
Propertiesoriginal language of film or TV show (P364)language of work or name (P407)has edition or translation (P747)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?sLabel ?s ?originalLanguageLabel ?variantWorkLanguageLabel ?editionLabel ?edition
WHERE {
?s wdt:P364 ?originalLanguage ;
wdt:P407 ?variantWorkLanguage ;
rdfs:label ?sLabel .
OPTIONAL { ?s wdt:P747 ?edition }
FILTER(?originalLanguage != ?variantWorkLanguage)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?sLabel
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?edition"):::projected
v2("?originalLanguage")
v4("?s"):::projected
v1("?sLabel"):::projected
v3("?variantWorkLanguage")
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
f0[["?originalLanguage != ?variantWorkLanguage"]]
f0 --> v2
f0 --> v3
v4 --"wdt:P364"--> v2
v4 --"wdt:P407"--> v3
v4 --"rdfs:label"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P747".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end