as the title asks, how can I store 2d string arrays in the DB? appwrite only supports to store 1d array. I tried doing it. but it says Attribute has invalid types. Value must be a valid string
I don't think you can do such a thing with Appwrite
Eventually array it's just a syntactic sugar way that Appwrite manipulate text for you.
That's mean that if you want to have a complex array you can create Varchar attribute and parse it manually
Maybe take a look at this too: https://github.com/appwrite/appwrite/issues/2838
Recommended threads
- Skip total counts crash the query
Hello, When adding the total parameter (either true, the default, or false) to the listRows function, it raises the following error: `type 'bool' is not a sub...
- Relationships and Realtime
Since now Relationship attributes are only returned when explicitly queried, how does this change reflect in Realtime? If a listener is listening to a row from ...
- Rate límit reset
I've made an error in the code by not setting a limit on how much rows should i get per request because i was working with a small db for testing. Last night Iv...