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
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...