query-c7d738d976b71369bd69a8304c83cb1d

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT (COUNT(?article) AS ?biographies)
WHERE
{
  SERVICE bd:slice
  {
    ?article schema:isPartOf <https://en.wikipedia.org/> .
    bd:serviceParam bd:slice.offset 0 .
    bd:serviceParam bd:slice.limit 1000000 .
  }
  ?article schema:about ?item .
  ?item wdt:P31 wd:Q5 .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?article"):::projected v3("?biographies") v2("?item") c6(["0^^xsd:integer"]):::literal c3([https://en.wikipedia.org/]):::iri c4(["bd:serviceParam"]):::iri c8(["1000000^^xsd:integer"]):::literal c11(["wd:Q5"]):::iri subgraph s1["http://www.bigdata.com/rdf#slice"] style s1 stroke-width:4px; v1 --"schema:isPartOf"--> c3 c4 --"bd:slice.offset"--> c6 c4 --"bd:slice.limit"--> c8 end v1 --"schema:about"--> v2 v2 --"wdt:P31"--> c11 bind1[/"count(?article)"/] v1 --o bind1 bind1 --as--o v3