query-606049dba28d937a553c601c3eab3c30

rq turtle/ttl

list of articles which are on Santali Wiki but not on English Wiki

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?sat_article_name ?orSitelink where { {select ?item ?sat_article_name ?satSitelink 
WHERE {
  ?satSitelink schema:about ?item; schema:isPartOf <https://sat.wikipedia.org/>; schema:name ?sat_article_name .
  } }  filter not exists {  ?enSitelink schema:about ?item; schema:isPartOf <https://en.wikipedia.org/> .}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "sat,en" }
} order by ?sat_article_name

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?enSitelink") v3("?item"):::projected v4("?satSitelink") v1("?sat_article_name"):::projected c3([https://en.wikipedia.org/]):::iri c7(["bd:serviceParam"]):::iri c9(["sat,en"]):::literal c4([https://sat.wikipedia.org/]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"schema:about"--> e0v2 e0v1 --"schema:isPartOf"--> e0c3 e0v1("?enSitelink"):::projected e0v2("?item"):::projected e0c3([https://en.wikipedia.org/]):::iri end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 f0 --> c2 f0 --> c3 v2 --"schema:about"--> v3 v2 --"schema:isPartOf"--> c3 v4 --"schema:about"--> v3 v4 --"schema:isPartOf"--> c4 v4 --"schema:name"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end