Expected Behavior
TypeError: Cannot read properties of undefined (reading 'find')
Current Behavior
Context
It seems caused by a mistake from the request, as closeTime is an object and not a value.
closeTime":{"date":"2023-09-30T00:15:59.999Z"}
const replayCandles = await this.tree.findDocuments({
closeTime: { $gte: startTime, $lte: endTime }
});
```