Hi guys. I don't know if this issue is serious enough for a support ticket.
I want to create a chat app and I need some advice. I have a chat collection that should have the chat ID, participants ID, and a list of messages.
At first, I thought about each message being a JSON encoded string. Later, I thought I could use relationships instead. But here is the thing - using either lists or relationships seem to have the same limitation. In Firebase, I could just set a document based on a given path and it can add the message to an existing list. But here in Appwrite, if I want to create a new message, I have to update the whole document each time, either I'm using lists or relationships.
Please what workarounds are there?