Hey @tg295!
Can you try sticking with cursor-based pagination and setting "Next cursor" to {{ JSON.stringify(ddbQueryPlaceholder.data.LastEvaluatedKey) }}
? Stringifying the object you're getting should prevent it from being passed as null
, in the query itself, you'll then want to set ExclusiveStartKey
to {{ JSON.parse(ddbTablePlaceholder.pagination.afterCursor) }}
.
Let me know if that works!