query-a285885f2f4c281a40065a16de0b7213

rq turtle/ttl

Items in ENWP, not in ELWP, with >30 sitelinks SELECT ?x ?count WHERE { https://en.wikipedia.org/ ^schema:isPartOf/schema:about ?x . MINUS { https://el.wikipedia.org/ ^schema:isPartOf/schema:about ?x . } ?x wikibase:sitelinks ?count . FILTER(?count > 30) } LIMIT 10000

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
# Items in ENWP, not in ELWP, with >30 sitelinks
SELECT ?x ?count WHERE {
   <https://en.wikipedia.org/> ^schema:isPartOf/schema:about ?x .
  MINUS { <https://el.wikipedia.org/> ^schema:isPartOf/schema:about ?x . } 
  ?x wikibase:sitelinks ?count .
  FILTER(?count > 30)
} LIMIT 10000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?count"):::projected v2("?x"):::projected a1((" ")) a2((" ")) c3([https://en.wikipedia.org/]):::iri c5([https://el.wikipedia.org/]):::iri f0[["?count > '30^^xsd:integer'"]] f0 --> v1 a1 --"schema:isPartOf"--> c3 a1 --"schema:about"--> v2 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; a2 --"schema:isPartOf"--> c5 a2 --"schema:about"--> v2 end v2 --"wikibase:sitelinks"--> v1