The List component supports pagination but only index based pagination (skip or page) and not cursor based pagination (startAfter).
I am currently trying to implement an object browser for s3 buckets and the s3 protocol supports pagination (or rather enforces it by only returning 1000 objects at once) but wants you to input the objectid to start scanning after.
Also, S3 does not return the total amount of objects but only if there are more.
This makes implementing my use case very difficult to impossible.
The List component supports pagination but only index based pagination (skip or page) and not cursor based pagination (startAfter).
I am currently trying to implement an object browser for s3 buckets and the s3 protocol supports pagination (or rather enforces it by only returning 1000 objects at once) but wants you to input the objectid to start scanning after.
Also, S3 does not return the total amount of objects but only if there are more.
This makes implementing my use case very difficult to impossible.