DynamoDB Pagination in Node js #4146
mallikarjuna11421
started this conversation in
General
Replies: 1 comment 1 reply
-
@mallikarjuna11421, you can pass the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I am facing issue in Node JS with DynamoDB.
I am trying to get the data from table using Query operation with Limit 100;
for 78 records it reached to 1 MB. how can i get next records from 79 to 100 and LastEvaluatedKey.
My Code:
let params = {
TableName: "TableName",
IndexName: 'SearchByName',
Limit: 100,
KeyConditionExpression: "channel = :type",
ProjectionExpression: "version,channel",
ExpressionAttributeValues: {
":type": search
}
};
Can you guys help me to resolve this.
Beta Was this translation helpful? Give feedback.
All reactions