`Entity .query() .patch({"data:field1":1, "data:field2":2}) .where("id", 5) .returning("*")` Only one of the fields on the jsonb is updated. I would expect it to have translated to `set data = data || jsonb '{field1:1, field2:2}'` Is there anyway to tell objection.js to use concat?