π Reproduction steps I encountered a server error while trying to implement a delete functionality in my project. Upon investigating, I discovered that the issue is with Appwrite itself. I attempted to delete directly from Appwrite, but encountered the same server error. The error was related to deleting documents from collections in databases.
π Expected behavior It is expected that the deletion of a particular document from the collection should be successful without displaying any server errors.
Here is my project id 656e00a196a8244c86a1
Well, I am unable to delete data in every document of every collection, may be because of having relationships in every collection.
I have 3 collections in my project database
users: 656ecb586a3a14542e59 posts: 656ecb31cb12a47afffb saves: 656ecb7f251d98fde34b
This is in Appwrite cloud?
Or you're self hosting
Recommended threads
- AppwriteException: Invalid query: Query ...
```js console.log(typeof interaction.user.id) console.log(interaction.user.id) const user_check = await TablesDB.listRows({ databaseId: "db", ...
- general_unauthorized_scope
localhost oauth not working. general_unauthorized_scope error showing. { "message": "User (role: guests) missing scopes ([\"account\"])", "code": 401, ...
- I recently switched to TablesDb. When li...
olddb.list_documents( queries =[ Query.order_desc("timestamp"), Query.equal("isPosted",[False]) ] ) Above works fine and reruns documents But below don't return...