Created
August 19, 2017 17:40
-
-
Save tommorris/9bfbd5f36bb481fb626c2b11311b0a1a to your computer and use it in GitHub Desktop.
Wikidata SPARQL: editions of books/works in languages other than the original
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ?original ?originalLabel ?translation ?translationLabel ?originalLang ?originalLangLabel ?translationLang ?translationLangLabel | |
WHERE { | |
?translation wdt:P629 ?original . | |
?translation wdt:P364 ?translationLang . | |
?original wdt:P364 ?originalLang . | |
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr,it,es,pt,de,dk,nl,pl,ru,he,ar,zh,jp". } | |
FILTER (?translationLang != ?originalLang) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment