does anyone know how you would push json into an a...
# javascript
m
does anyone know how you would push json into an array in a column while keeping the old json that's already in there? having some trouble with this
m
@User Is your column of type array?
m
yes it is
m
Then you can do mycol = array_append(mycol, "{yourjson}")
m
oh okay I get what you're saying, I was thinking about it the wrong way thank you!