Hi, I have a note-taking feature in my react native app, and I am confused on how to set up a backend to store notes written by users. Currently, I have a 'users' database, which has a string attribute called 'notes', but I don't think this is the right approach, since one user can have multiple notes.
What is the best way to set up the Appwrite backend to store notes from users in my app?
TL;DR
Developer needs help setting up a backend to store notes in a note-taking app using Appwrite. Current 'users' database setup isn't ideal. To properly store multiple notes for each user, set up a separate 'notes' collection in Appwrite where each note has a reference ID linking it to the specific user.