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
- asked 6 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 2 years ago