You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Perform bulk operations on documents within your collections for efficient data handling.
5
+
---
6
+
7
+
Appwrite Databases supports bulk operations for documents, allowing you to create, update, or delete multiple documents in a single request. This can significantly improve performance for apps as it allows you to reduce the number of API calls needed while working with large data sets.
8
+
9
+
As of now, bulk operations can only be performed via the server-side SDKs. The client-side SDKs do not support bulk operations.
10
+
11
+
# Create documents {% #create-documents %}
12
+
13
+
{% info title="Permissions required" %}
14
+
You must grant **create** permissions to users at the **collection level** before users can create documents.
15
+
[Learn more about permissions](/docs/products/databases/permissions)
16
+
{% /info %}
17
+
18
+
You can create multiple documents in a single request using the `createDocuments` method.
Copy file name to clipboardExpand all lines: src/routes/docs/products/databases/documents/+page.markdoc
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -264,3 +264,11 @@ Read, update, and delete permissions can be granted at both the collection and d
264
264
Users only need to be granted access at either the collection or document level to access documents.
265
265
266
266
[Learn about configuring permissions](/docs/products/databases/permissions).
267
+
268
+
# Bulk operations {% #bulk-operations %}
269
+
270
+
In Appwrite, you can perform bulk operations on documents within a collection. This allows you to create, update, or delete multiple documents in a single request.
271
+
272
+
As of now, bulk operations can only be performed via the server-side SDKs. The client-side SDKs do not support bulk operations.
273
+
274
+
[Learn more about bulk operations](/docs/products/databases/bulk-operations).
0 commit comments