My one of the document field path is going to be like array of objects, nested objects in the image shown below but I'm confused is this possible with appwrite because appwrite only supports attributes such as string ,float, integer, email, ip, enum, boolean & url.
It means it's not possible with Appwrite ? Thanks for the detailed solution but now I have decided to use Firebase for database and Appwrite only for login service in my current project.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Help Required!✋
My one of the document field path is going to be like array of objects, nested objects in the image shown below but I'm confused is this possible with appwrite because appwrite only supports attributes such as string ,float, integer, email, ip, enum, boolean & url.
You have a few options, document attributes can be made into arrays, or you can save your JSON as a string.
These wouldn't result in queryable data, because querying unstructure data is terrible for performance.
If you want to create something like this that must be queried, creative relational DB design allows you achieve much the same.
It means it's not possible with Appwrite ? Thanks for the detailed solution but now I have decided to use Firebase for database and Appwrite only for login service in my current project.