get next items;#
if there are more items to be fetched, the response after the previous request, will contain a pagination object;if the previous response contains a pagination object, it means there are more items to be fetched, otherwise, there are no more items;to get the next items, you safely parse and pass the lastEvaluatedKey
value to the query params as a string (i.e., the value (usually an object) must be URL-encoded);
hence, your next request goes as thus:your current response will look this way;you may continue the process that way if the current response has a pagination
object;Modified at 2025-08-10 08:01:57