ArrayFragment: {
    array: TaggedType[];
}

A piece of an interpolated query that represents an array. Arguments are passed to fauna using ArrayFragments so that query arguments can be nested within javascript arrays.

ArrayFragments must always be encoded with tags, regardless of the "x-format" request header sent.

 const arg = [1, 2];
const query = fql`${arg})`;
// produces
{
"fql": [
{
"array": [
{ "value": { "@int": "1" } }, // Array items have type QueryInterpolation
{ "value": { "@int": "2" } }
]
}
]
}