query-b2cd527c69ef0d7739e86cbea4ed8a1f
Items with Hindi Wikipedia articles but no English Wikipedia articles 10:00, 10 July 2023 (UTC)) contribs • talk (he) (Sbb1413I'm new to Wikidata Query Service and I want to parse a query that will show items with Hindi Wikipedia articles but no English Wikipedia articles. It will be useful since I'm going to translate such Hindi Wikipedia articles into Bengali. 13:41, 10 July 2023 (UTC)) contribs • talk (he) (Sbb1413Thank you for the query. 12:57, 10 July 2023 (UTC)) talk (Piastu part to this? You should manage with it, regards, no Bengali articleSo maybe it would be useful to add also
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
SELECT ?item ?sitelink WHERE {
?sitelink schema:about ?item ;
schema:isPartOf <https://hi.wikipedia.org/> .
MINUS {?sitelink2 schema:about ?item ;
schema:isPartOf <https://en.wikipedia.org/> .}
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelink"):::projected
v3("?sitelink2")
c4([https://en.wikipedia.org/]):::iri
c3([https://hi.wikipedia.org/]):::iri
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c4
end