1
0
Fork 0
mirror of synced 2024-05-21 05:02:37 +12:00

Updated docs

This commit is contained in:
Eldad Fux 2020-05-30 16:26:39 +03:00
parent 11c2d6ec82
commit 595047ee3b
2 changed files with 4 additions and 4 deletions

View file

@ -1 +1 @@
Create a new Document.
Create a new Document. Before using this route, you should create a new collection resource using either a [server integration](/docs/server/database?sdk=nodejs#createCollection) API or directly from your database console.

View file

@ -1,7 +1,7 @@
The Database service allows you to create structured collections of documents, query and filter lists of documents, and manage an advanced set of read and write access.
The Database service allows you to create structured collections of documents, query and filter lists of documents, and manage an advanced set of read and write access permissions.
All the data in the database service is stored in structured JSON documents. The Appwrite database service also allows you to nest child documents in documents and use advanced filters to both search and query the database just like you would with a classic graph database.
All the data in the database service is stored in structured JSON documents. The Appwrite database service also allows you to nest child documents in parent documents and use advanced filters to both search and query the database just like you would with a classic graph database.
Each database document structure in your project is defined using the Appwrite [collection rules](/docs/rules). The collections rules help you ensure all your user-submitted data is validated and stored according to the collection structure.
Using Appwrite permissions architecture, you can assign read or write access to each document in your project for either a specific user, team, user role, or even grant it with public access. You can learn more about [how Appwrite handles permissions and access control](/docs/permissions).
Using Appwrite permissions architecture, you can assign read or write access to each document in your project for either a specific user, team, user role, or even grant it with public access (*). You can learn more about [how Appwrite handles permissions and access control](/docs/permissions).