I recently upgraded hasura from beta-9 to stable 1.0.0.
My tests indicate that inserting into a field of type "json" now stringifies the data automatically, whereas before i had to stringify the data by hand. Now inserting the string "[1, 2, 3]“ returns the value ""[1, 2, 3]"" in queries, whereas before it was just "[1, 2, 3]".
This is not the case with updating. Here the automatic stringification does not happens.
Is this expected behavior, and will it stay in future versions?