I have an array
and I try (I spend a couple of useless hours) to update table in firestore document
but I still receive this error
How to solve this issue?? I saw that not only me had similar problem, could you do anything with this?
I have an array
and I try (I spend a couple of useless hours) to update table in firestore document
I have the same problem. I have multiples ways including making sure the array comes from a datastore field that is confirmed as an array.
Welcome to the Make Community!
For technical issues or bugs like this, directly contacting support can often lead to a faster resolution. Make support has access to your specific account details, scenario and scenario logs, server-side logs, and internal tools and resources, which allows them to investigate more thoroughly than what you have access to. Additionally, sharing potentially sensitive information about your account, scenario variables, and output bundles might not be advisable as it is a public forum.
You can open a new ticket here, or if you are unable to login for some reason, you can create another new free Make account to access the ticketing system (which is only available to logged-in users). After submitting a new ticket, you will receive an automatic confirmation email with the subject “Ticket Created” in the subject. If you do not receive this, try sending the ticket again.
If you manage to get your issue resolved with support, we’d still love to hear about it! Sharing your solution on the forum can help others facing similar problems.
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
Ah yes… as usually with google… they make it very complicated.
The core issue, even though you correctly set the “Value Type” to “Array Value” in the Firestore module, is that Firestore (especially through the Make module) works a bit different.
It doesn’t just want a plain list of values like ["id1", "id2"]
passed directly into the ‘Value’ field for updates. It actually expects an array where each item inside is its own structured object.
Think of it like needing [{"someKey": "id1"}, {"someKey": "id2"}]
instead.
I can send you a step-by-step guide how to do it with a Aggregator module, just send me a short DM (I can’t post it because it’s Ai generated and the community rules here don’t allow it).
Got punished for this last time.