[16:38:07] SMalyshev: o/ I'm trying to get labels of a Wikidata ID in different languages, but for some reason I can only see the result in one language. What am I doing wrong here: https://query.wikidata.org/#SELECT%20%3FitemLabel%20WHERE%20%7B%0A%20%20VALUES%20%3Fitem%20%7B%20wd%3AQ5%20%7D%20%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%0A%20%20%20%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%2Cru%22%20.%0A%20%20%7D%0A%7D ? [17:23:47] bmansurov: en.ru means "english, failing that, russian", not "english and russian" [17:23:59] oh i see [17:24:05] label service only produces one language [17:24:24] if you need more, use direct access to rdfs:label and filter by language(s) [17:24:45] (and yes, it _could_ produce more than one, but currently it doesn't do that :) [17:24:52] OK, and can I assume that labels are the same as wikipedia article titles? [17:25:01] no, not always [17:25:17] SMalyshev: any example query of getting wikipedia article titles instead? [17:25:33] i.e. you would have label as "London" and article may be "London (city)" [17:25:54] I see [17:26:29] https://www.mediawiki.org/wiki/Wikibase/Indexing/RDF_Dump_Format#Sitelinks [17:27:03] schema:about is what links sitelink to item, and schema:isPartOf defines which wiki it is [17:27:26] ok, cool [17:27:30] thanks a lot, SMalyshev