reading notes for code fellows
These are important because you want to know exactly what each part of CRUD does and how to use it moving forward.
CRUD (create read update delete) represents the four basic functions that models should be able to do and are considered necessary in a persistant storage application. When we create something, it makes a new object that we can then post to our API. After it has been posted, the API should allow you to read that data using a get request. Once data exists, you can update it using put, which replaces all of the current data. You can also use the delete method to remove existing data.
Does the deletion method from the video work just as well as the find by id and delete?