How would I write this in honey?
call `xemuliam-bigquery`.US.set_many_table_labels('table_name_here', [
('bla-bla-label', 'value1')
]);
At a minimum, I think I need to register a call clauseGiven that there's no DSL to generate that call for you (not talking about an explicit :call) and no DSL for [...], I'd go with a custom handler for that specific function, unless you have many function like that one.
Thanks for validating there’s no little trick for this 🙂