I have a key with a value that is an array in a BQ table, see below
"foo": [{"name":"bar","type":"FLOAT","value":"16.0"},{"name":"baz","type":"STRING","value":"F"}]
and I am trying to extract the value of foo.
This is what I am trying:
JSON_EXTRACT_ARRAY('$.f.foo') AS fooBarBaz
and then
ARRAY_AGG(f.foo) AS fooBarBaz
but this is not even returning null
What am I doing wrong?
