The JSONata doc "top-level-arrays-nested-arrays-and-array-flattening" covers the "flatten" case of an array of objects, each of which contains a property that contains an array value.
However, I have not been able to figure out how to flatten an array of arrays.
Q: What is the JSONata query to flatten an array of arrays?
input
[ [1,2], [], [3] ]
desired
[ 1, 2, 3 ]
See Question&Answers more detail:os