How does Appwrite behave in cyclic dependencies?
Consider following (is for multi tenant): Customer(User, Address, Shop) Shop(List<Customer>) Order(Customer, Shop)
What is the output, if I create a Order and fetch it afterwards.
In my case, I think in the nested json there is the data missing (otherwise it would create infinity children).
- Am I right?
- How to solve this?
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Our Appwrite organization is suspended
Please give support regarding this , no app is working now , please solve my issue and give support , no one is replying in message section or email.
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...