Can honeysql do multiple or's if a vector is passed in, ["A" "B"] -> select foo from bar where baz = "A" or baz = "b"?
["A" "B"]
select foo from bar where baz = "A" or baz = "b"
Why not [:in :baz ["A" "B"]]
[:in :baz ["A" "B"]]
good idea!