Given a datastore entity structure where one column (dates) contains an object array:
[{date: 2018-01-01T00:00:00Z, otherProps:x }, {date: 2018-01-02T00:00:00Z, otherProps: x}, {date: 2017-12-31T00:00:00Z, otherProps: x}]
Is it possible to construct a complex index and a query on the earliest date within the entities dates array.
For example, I would like to select all entities where the earliest date is before a certain date... This is my first foray into NoSQL so apologies if this is obvious!