I want to import a CSV file to create a document on it on the AppWrite website. I have an attribute "name" of type String and "ingredients" which is of type String[]. When creating a CSV file, it look like the following:
name, ingredients Pasta, ["flour", "tomatoes"] Cake,["sugar", "flour"]
But when I upload the CSV file, I receive the error message, that the attribute "ingredients" must of type Array.
To solve this I tried many formats like
- ["A", "B"]
- "["A", "B"]"
- "[A, B]"
- "['A', 'B']"
- [A, B]
None of these formats seemed to work.
How do I format the array correctly?
Recommended threads
- Invalid `region` param: Value must be on...
Hi! I'm trying to migrate a small project from the cloud to a self hosted instance to play around but without any success! I cannot initiate a migration witho...
- Migration from cloud to self-hosted fail...
Hi! I'm trying to migrate a small project from the cloud to a self hosted instance to play around but without any success! The migration process fails with the ...
- Feedback and Deployment Challenges with ...
Hello world!, I've been developing a project using FastAPI in Python, and I was considering deploying it through Appwrite Functions. However, I encountered a f...