but why u would use json in the first time, just use columns is better π
but why u would use json in the first time, just use columns is better 

json function


parse/extract json, so u are using the wrong functionsjson_extract
json_extract(${usersTable.settings}, '$')settings
:
"{\"hello\":[\"world\",\"there\"]}"SELECT json_extract('{"hello":["world","there"]}', '$.hello');'["world","there"]'SELECT json_extract('{"hello":["world","there"]}', '$');'{"hello":["world","there"]}'console.log(JSON.parse(user?.settings?.hello))message: "undefined" is not valid JSONconsole.log(JSON.parse(user?.settings))

wrangler d1 execute your-db βcommand="SELECT json_extract(β¦) FROM yourtable" is a good way to experiment.
