query-2cdedb6532129c8b0e18a14357374298
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT distinct ?item
WHERE
{
SERVICE bd:slice {
?item wdt:P244 [].
bd:serviceParam bd:slice.offset 0 . # Start at item number (not to be confused with QID)
bd:serviceParam bd:slice.limit 200000 . # List this many items
}
# The property of interest
?article schema:about ?item ; # has a sitelink
schema:isPartOf <https://en.wikipedia.org/> . # sitelink is to EN wikipedia
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article")
v1("?item"):::projected
a1((" "))
c5(["0^^xsd:integer"]):::literal
c10([https://en.wikipedia.org/]):::iri
c3(["bd:serviceParam"]):::iri
c7(["200000^^xsd:integer"]):::literal
subgraph s1["http://www.bigdata.com/rdf#slice"]
style s1 stroke-width:4px;
v1 --"wdt:P244"--> a1
c3 --"bd:slice.offset"--> c5
c3 --"bd:slice.limit"--> c7
end
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c10