
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
- Appwrite functions are not accepting/rea...
curl --location 'https://fra.cloud.appwrite.io/v1/functions/custom-login/executions' \ --header 'X-Appwrite-Project: ' \ --header 'Content-Type: application/js...
- deno 2 Cloud random errors
we have big problems with the functions. although we do not change anything in the function, we have the following random behaviour: - no scope permissions erro...
- Invalid Origin Error – Need Help Registe...
Subject: Invalid Origin Error – Need Help Registering Platform Hi Appwrite Support <:appwrite:1156975611466764298> , I'm encountering an issue when trying to ...
