44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
---
|
|
title: API CRUD | Datasquirel Docs
|
|
description: Run basic database operations via the API
|
|
page_title: CRUD
|
|
page_description: Run basic database operations via the API
|
|
---
|
|
|
|
## CRUD Operations
|
|
|
|
CRUD stands for `create`, `read`, `update`, `delete`. These are the building blocks of data management, and Datasquirel makes these processes a walk in the park.
|
|
|
|
<div className="w-full grid grid-cols-1 gap-8 items-stretch">
|
|
<DocsCard
|
|
title="GET"
|
|
description="Get data from your database."
|
|
href="/docs/api-reference/crud/get"
|
|
className="h-full"
|
|
/>
|
|
<DocsCard
|
|
title="POST"
|
|
description="Create data in your database."
|
|
href="/docs/api-reference/crud/post"
|
|
className="h-full"
|
|
/>
|
|
<DocsCard
|
|
title="PUT"
|
|
description="Update data in your database."
|
|
href="/docs/api-reference/crud/put"
|
|
className="h-full"
|
|
/>
|
|
<DocsCard
|
|
title="DELETE"
|
|
description="Delete data in your database."
|
|
href="/docs/api-reference/crud/delete"
|
|
className="h-full"
|
|
/>
|
|
<DocsCard
|
|
title="OPTIONS"
|
|
description="Run any crud action."
|
|
href="/docs/api-reference/crud/options"
|
|
className="h-full"
|
|
/>
|
|
</div>
|