-
-
Notifications
You must be signed in to change notification settings - Fork 29
How to Pagination
Fernando Correa de Oliveira edited this page Sep 6, 2019
·
1 revision
my @a := ListOfStuff.^all.batch(10); # Returns a ResultSeqSeq (no SQL is run)
.say for @a[0]; # prints every element from the first page
# (now Red will run the query)
.say for @a[5]; # query and prints the 6th page