honeysql

markaddleman 2023-12-27T15:27:09.279349Z

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-himik 2023-12-27T15:41:51.196169Z

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.

markaddleman 2023-12-27T15:57:39.798959Z

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