On a patch function in the connection builder, is there a way to pass a data object as the second argument instead of passing each updated column separately?
For instance, if i have a complex data object that gets updated in the ui, i’d rather pass the whole data object like this:
[ { "__id": id, {my_data_object} } ]
rather than something like
[ { "__id": id, "column1": column1_update, "column2": column2_update, etc.. } ]