Questions
- Implement an
update
handler to update an existing movie item. - Create a new PUT method in API Gateway to trigger the
update
Lambda function. - Implement a single Lambda function to handle all type of events (GET, POST, DELETE, PUT).
- Update the
findOne
handler to return a proper response code for a valid request but an empty data (for example, no movie for the ID requested). - Implement a pagination system on the
findAll
endpoint using aRange
header and using aQuery
string.