Having a problem, hopefully easily resolved, expanding an array in a query. We have a nesting that ends in a fairly straightforward structure that ends in a priorities array, like this:

A query against a direct array element works:
SELECT
planYear[0].form.priorities.subItems.programPriorities.priorities[0].describeAnyProblems
FROM `somepath`
WHERE (where clause)
and any number in the brackets is fine.
But what we want is the describeAnyProblems field across all array elements. Yet the expected query returns no results:
SELECT
planYear[0].form.priorities.subItems.programPriorities.priorities[*].describeAnyProblems
FROM `somepath`
WHERE (where clause)
Any thoughts?