This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-12-27
Channels
- # announcements (2)
- # babashka (24)
- # beginners (116)
- # cider (7)
- # cljsrn (6)
- # clojure (38)
- # clojure-bay-area (4)
- # clojure-europe (3)
- # clojure-losangeles (1)
- # clojure-norway (10)
- # clojurescript (171)
- # datomic (16)
- # honeysql (3)
- # improve-getting-started (1)
- # introduce-yourself (2)
- # java (12)
- # malli (5)
- # membrane (2)
- # pedestal (3)
- # shadow-cljs (79)
- # spacemacs (6)
- # xtdb (10)
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 🙂