I'm struggling a bit to convert this SQL to the equivalent honeysql
SELECT * FROM "table" WHERE "field" @> '"string"'::jsonb;
that's the @> operator to lookup elements in arrays
[:@> :field "value"]
would not work since @
is a special symbol in clojure
and other attempts with sql/raw
also failed, any suggestions?