How can I use the slice command to get data in batches? For example say I have a repeater that runs on an array and returns bundles in batches of 6. How can I use the slice command to retrieve each batch?
You need to use a repeater value to calculate the slice "size" For example Repeater set with initial value 0, then you can use slice(array;repeater.value;repeater.value+6)
How can I use the slice command to get data in batches? For example say I have a repeater that runs on an array and returns bundles in batches of 6. How can I use the slice command to retrieve each batch?
You need to use a repeater value to calculate the slice "size" For example Repeater set with initial value 0, then you can use slice(array;repeater.value;repeater.value+6)