I have data in Firestore as (Collection) Movies -> (Document) MovieId -> (Array).
Each movie document can have many arrays which are named in a date format MM-DD-YYYY. My question is, is there any way to query these arrays by their name? Considering the name is current date.
For example if I want to run a cloud function that gives me all the today's date array from all the movies?
Something like below...
var moviesRef = db.collection('movies');
var query = moviesRef.where("01-16-2019", "==", "01-16-2019");
The 01-16-2019 is my array name.
Thanks in advance
