honeysql

Discussion of https://github.com/seancorfield/honeysql :slightly_smiling_face:
2017-11-24T15:51:14.000195Z

I'm struggling a bit to convert this SQL to the equivalent honeysql SELECT * FROM "table" WHERE "field" @> '"string"'::jsonb;

2017-11-24T15:51:30.000309Z

that's the @> operator to lookup elements in arrays

2017-11-24T15:52:18.000212Z

[:@> :field "value"] would not work since @ is a special symbol in clojure

2017-11-24T15:52:30.000208Z

and other attempts with sql/raw also failed, any suggestions?