Open martinfruehmorgen opened 7 months ago
I have the same problem with using query ObjectIdShema with $ne.
Logging the query after serviceQueryResolver
_id: { $ne: "65e1df944e6eaf42babb8198", },
_id: { $ne: new ObjectId('65e1df944e6eaf42babb8198'), },
I don't know what would've changed here. Whatever it is, it looks like the tests in https://github.com/feathersjs/feathers/blob/dove/packages/mongodb/test/converters.test.ts#L41 didn't catch it.
Hello, did anybody recognize a difference between feathers 5.0.23 vs 5.0.24 using $in-query with mongodb-objectIDs?
In v23 a query
while roomId is a ObjectIdSchema() in the scheme worked.
In v24 I need to change the messagesQueryProperties manually to
to get the query work.
NodeJS version: 20.11.0
Operating System: Windows 11
Browser Version: Edge Version 123.0.2420.97 (Offizielles Build) (64-Bit)
Thank you! Martin