When generating a view with array type data and querying for latest returns: 'This query returned no results.'
1.-Install extension on collection 'examples'
2.-Create a collection called 'examples'
3.-Fill collection with document:

4.- Create the scheme views with the following example.json
{
"fields": [
{
"name": "name",
"type": "string"
},
{
"name":"favorite_numbers",
"type": "array"
},
{
"name": "last_login",
"type": "timestamp"
}
]
}
5.- Go to google cloud platform big query, and query examples_raw_latest to verify that data exists on big query

6.- Go to the created view (examples_schema_example_latest) and query all data (no results)

7.- Create another schema called exampleSimple.json in which the array data type is deleted
{
"fields": [
{
"name": "name",
"type": "string"
},
{
"name": "last_login",
"type": "timestamp"
}
]
}
Create views and query results:

Now you can see the result.
Expected to see a row with favorite_numbers_member and favorite_numbers_index
'This query returned no results.'
I'm having the same issue :(
@diegofhe , could you make it work?
Thanks!
Luciano
Hello @LucianoGanga, my project is still on development , so this issue is not critical to me (I am waiting for the firebase team to merge the fix on 368). The first thing that comes to mind is to twerk the query on ${schema}_latest on "details" tab.

Have a look at 368 to dig for info for a hotfix
Good luck!
Thank you @diegofhe !! I really appreciate it :)
I believe this was fixed in this PR: https://github.com/firebase/extensions/pull/368 so I'm going to go ahead and close this issue.
Most helpful comment
Hello @LucianoGanga, my project is still on development , so this issue is not critical to me (I am waiting for the firebase team to merge the fix on 368). The first thing that comes to mind is to twerk the query on ${schema}_latest on "details" tab.

Have a look at 368 to dig for info for a hotfix
Good luck!