query-04c5ecbdba0e3817c01847e190914826

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel where
{
   {
  select ?article where
    {
      ?article schema:isPartOf <https://sk.wikipedia.org/> .
    } offset 200000 limit 100000 }  ?article schema:about ?item .
  filter not exists {?item schema:description ?desc .}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article") v2("?desc") v1("?item"):::projected c6(["bd:serviceParam"]):::iri c3([https://sk.wikipedia.org/]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"schema:description"--> e0v2 e0v2("?desc"):::projected e0v1("?item"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> v2 v1 --"schema:description"--> v2 v3 --"schema:isPartOf"--> c3 v3 --"schema:about"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end