Fork me on GitHub
#honeysql
<
2023-12-27
>
markaddleman15:12:09

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 clause

p-himik15:12:51

Given 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.

markaddleman15:12:39

Thanks for validating there’s no little trick for this 🙂