Oh I see, so this isn't about problems with paging, this is about getting all the data in a single page.
Several things to check. First of all, in your mapping, is there an array index like $.value[0].name
? Like I show in the image below:
This would cause only the first record's properties to be recorded. The [0]
means get the item 0 places from the top.
Instead you would need to use the Collection reference
. In your case that would be set to $.['value']
. The column mapping would also need to be changed, and not start with $
. Again, image below. I hope I remember the format right. I think it was just the property name, or ['property name']
.