-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Maybe I'm missing something, but the options are not passed further in the findOne
Lines 163 to 173 in 3274b65
| findOne = async ( | |
| query: Filter<T> = { }, | |
| options: GeneralRequestOptions = {}, | |
| ): Promise<T | null> => { | |
| const collection = await this.getCollection(); | |
| query = this.addQueryDefaults(query, options); | |
| this.validateQuery(query, options); | |
| return collection.findOne<T>(query); | |
| }; |
Metadata
Metadata
Assignees
Labels
No labels