I have been searching this topic and I am finding examples that deal with strings but not so much about arrays. I start out with a JSON string stored in a single column, looking like this...
I then can use this query to extract just the Ids portion of each record...
SELECT Id, Message,
JSON_QUERY(Message, 'strict$.Ids') AS Ids
FROM ActionQueue
WHERE Status = 1
AND (Action = 'Approve' OR Action = 'Reject')
I need to now combine those arrays (not sure if they are strings that look like arrays?) into a single array.
I need to use that list of Ids for passing to a stored procedure as well as getting a count of the Ids.

