query-a6645087f1ecede16d13fa09d6e14f6f

rq turtle/ttl

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

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

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?lang_label") a1((" ")) c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c5([https://mr.wikipedia.org/]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?lang_label = 'mr'"]] e0f0 --> e0v1 e0v2 --"rdfs:label"--> e0v1 e0v2("?item"):::projected e0v1("?lang_label"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f1[["?lang_label = 'mr'"]] f1 --> v1 v2 --"rdfs:label"--> v1 a1 --"schema:about"--> v2 a1 --"schema:isPartOf"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end