query-6cdbd32362b05ec41610aab64c8ca0bb
list of articles which are on orwiki but not on enwiki
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?or_article_name ?orSitelink where { {select ?item ?or_article_name ?orSitelink
WHERE {
?orSitelink schema:about ?item; schema:isPartOf <https://or.wikipedia.org/>; schema:name ?or_article_name .
} } filter not exists { ?enSitelink schema:about ?item; schema:isPartOf <https://en.wikipedia.org/> .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "or, en" }
} order by ?or_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("?orSitelink"):::projected
v1("?or_article_name"):::projected
c3([https://en.wikipedia.org/]):::iri
c7(["bd:serviceParam"]):::iri
c9(["or, en"]):::literal
c4([https://or.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