Web Developer
I have an collection of objects inside the array like this.
example-
const [arrray, setarray] = useState<any[]>([ { link: "", title: "", description: "", tags: [], images: null, status: "pending", category: "", ownerId: "", type: "Website Link", }, { link: "", title: "", description: "", tags: [], images: null, status: "pending", category: "", ownerId: "", type: "Website Link", }, ])
Is their any way that i can store this in appwrite database as it is. because user can add multiple objects up to 25 objects inside the array. after that what i want to do it is i wanted to show that data in card step by step as it is stored . I hope you understood so how i can implement this in appwrite . Or i have to store every object individually?.please help me with the approach.