Say you have a list of json dictionaries in a BigQuery column called "metadata", like so:
"mentions": [
{
"start": 3,
"end": 17,
"username": "xyz",
"id": "12344566"
},
{
"start": 19,
"end": 34,
"username": "abc",
"id": "988649348"
},
{
"start": 35,
"end": 47,
"username": "jfk",
"id": "293489234"
}
]
How can I extract start's values into an array, recursively?:
[3, 19, 35]
Not simply by accessing elements like [0] [1] etc, but recursively