query-85f5591f36cf2bbf21254b91855aa9b1
שאילתא עבור דפי שער
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 ?j9u ?sitelink WHERE {
SERVICE bd:slice {
?item wdt:P8189 ?j9u .
bd:serviceParam bd:slice.offset 0 . # Start at item number (not to be confused with QID)
bd:serviceParam bd:slice.limit 220000 . # List this many items
}
?article schema:about ?item ;
schema:isPartOf <https://he.wikipedia.org/> ;
schema:name ?sitelink .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article")
v1("?item"):::projected
v2("?j9u"):::projected
v4("?sitelink"):::projected
c5(["0^^xsd:integer"]):::literal
c3(["bd:serviceParam"]):::iri
c10([https://he.wikipedia.org/]):::iri
c7(["220000^^xsd:integer"]):::literal
subgraph s1["http://www.bigdata.com/rdf#slice"]
style s1 stroke-width:4px;
v1 --"wdt:P8189"--> v2
c3 --"bd:slice.offset"--> c5
c3 --"bd:slice.limit"--> c7
end
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c10
v3 --"schema:name"--> v4