I wonder if there is way to update an array of an ...
# community-help
m
I wonder if there is way to update an array of an document efficient. Lets say I have a Group
Copy code
group{
id: string
members string[]
}
Is there a way to append or delete a string of the members? Or is the only way to update the members to send the whole array of strings?
k
It's not possible to add/remove elements without sending the whole array.
1