query-a6645087f1ecede16d13fa09d6e14f6f
Training needed ]reply[07:07, 22 July 2019 (UTC)) talk (आर्या जोशीMany articles on Marathi Wikipedia do not have wikidata lables. I want to learn how to create lables for these articles.--]reply[10:54, 22 July 2019 (UTC)) talk (Bodhisattwa (CIS-A2K)This SPARQL query will give you a list of such articles in Marathi Wikipedia which don't have Marathi labels in Wikidata. -- ]reply[10:40, 22 July 2019 (UTC)) talk (Bodhisattwa (CIS-A2K), which also serves the purpose. If you can schedule for online call as per your free time, I will arrange accordingly. Thanks. -- Tabernacle gadget will be suitable for your request, I guess. We can also discuss WE-Framework:, thank you for your request. Learning about आर्या जोशी@ ]reply[07:16, 22 July 2019 (UTC)) talk (TitoduttaKindly explain in details some of the topics you want to learn, such as gentle introduction to Wikidata, specific tools, regards. --
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel
WHERE
{
FILTER(NOT EXISTS {
?item rdfs:label ?lang_label.
FILTER(LANG(?lang_label) = "mr")
})
[] schema:about ?item; schema:isPartOf <https://mr.wikipedia.org/>
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 100