Hi @Punosie instead of formatted in the columns/attribute field try this: {{ Object.keys($json.formatted).join(',') }}
So that it actually extracts it from the previous node, as currently what you have used fetches a list which causes the error, make sure what you are fetching is actually readable string not a list or couple of objects.
I’ve seen this error before, is a pretty common issue with the Firestore node. In this case, the problem is that the “Columns / Attributes” field is being used in the wrong way.
What works better for me is using the Add Field option instead, or restructuring the data so I’m not passing the formatted wrapper and instead sending the fields directly at the root level.