CRUD Operations

Best practices
- Use plural: - postsnot- post
- Updating - PUTor- PATCHis user preference
- PUToperations send all the data over again and patch it in the database
- PATCHoperations send only the data that has to be adjusted and the backend should know how to do this
Last updated