Update overview.mdx

This commit is contained in:
James Mikrut
2023-04-11 09:44:01 -04:00
committed by GitHub
parent 19ce0d79ef
commit 588a7d0a5b

View File

@@ -32,7 +32,7 @@ Note: Collection slugs must be formatted in kebab-case
| `GET` | `/api/{collection-slug}/:id` | Find a specific document by ID |
| `POST` | `/api/{collection-slug}` | Create a new document |
| `PATCH` | `/api/{collection-slug}` | Update all documents matching the `where` query |
| `PATCH` | `/api/{collection-slug}` | Update a document by ID |
| `PATCH` | `/api/{collection-slug}/:id` | Update a document by ID |
| `DELETE` | `/api/{collection-slug}` | Delete all documents matching the `where` query |
| `DELETE` | `/api/{collection-sldug}/:id` | Delete an existing document by ID |