Thursday 19 December 2019

Places having article in En Wiki do not have in Ar Wiki

SELECT DISTINCT ?item ?entitle ?enarticle WHERE {
  ?item wdt:P31/wdt:P279* wd:Q486972;
                 wdt:P17 wd:Q878.
       
  MINUS {
    ?ararticle schema:about ?item;
               schema:isPartOf <https://ar.wikipedia.org/>.
  }
  ?enarticle schema:about ?item;
             schema:name ?entitle;
             schema:isPartOf <https://en.wikipedia.org/>.
}

SPARQL query to find out all female scientists with no Arabic but an English article

SPARQL query to find out all female scientists with no Arabic but an English article.


SELECT DISTINCT ?item ?entitle ?enarticle WHERE {
  ?item wdt:P31 wd:Q5;
        wdt:P106/wdt:P279* wd:Q901;
        wdt:P21 wd:Q6581072.
  MINUS {
    ?ararticle schema:about ?item;
               schema:isPartOf <https://ar.wikipedia.org/>.
  }
  ?enarticle schema:about ?item;
             schema:name ?entitle;
             schema:isPartOf <https://en.wikipedia.org/>.

}


Courtesy - Lucas Werkmeister
 [Dec 18, 2019 12:01:27 AM
It is his version: https://w.wiki/E4X