manazoOriginal post
Rank 3: Container
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
Summary
There currently isn't a built-in way to store 2D arrays in Appwrite. However, one potential solution is to use a Varchar attribute and manually parse the array yourself. This would involve converting the 2D array to a string and then storing it as a Varchar attribute.