1 Answer
- Newest
- Most votes
- Most comments
1
If your API call is a Query then when the user clicks on the last row, you simply set ScanIndexForward to False, this reverses the order of the Query:
If you are doing a Scan with a limit, then you would need to be a little smarter about things. You would need to break your table up into segments, then use a segmented Scan to get the last portion of data, for example:
aws dynamodb scan \
--table-name MusicCollection \
--total-segments 4 \
--segment 3
Relevant content
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 5 days ago
