1 Answer
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
answered 2 months ago
Relevant questions
- asked a year ago
- asked 4 years ago
- asked 5 months ago
- asked 4 months ago
- asked 4 months ago
- Accepted Answerasked 6 months ago