query-5fd4fbeee7ba3d537657cface1f587b3
דוח שבועי הספרייה הלאומית
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?j9u 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 1000000 . # List this many items
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?j9u"):::projected
c5(["0^^xsd:integer"]):::literal
c3(["bd:serviceParam"]):::iri
c7(["1000000^^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