Christoph Strobl
Christoph Strobl
Thanks for reporting - we'll look into it. Meanwhile you may want to use a composed `Predicate`, that filters out collection like elements, along with `MongoJsonSchemaCreator#filter()`.
thanks for reporting and the sample - we'll have a look.
Thanks for reporting - we'll highlight store specific deviation of functionality provided via the commons module.
Thanks for the PR!
After a closer look at the PR it seems the newly introduced methods/properties are never propagated to the driver. As @mp911de already [mentioned](https://github.com/spring-projects/spring-data-mongodb/issues/3460#issuecomment-1167390557), it is already possible to set `startAtOperationTime`...
Thanks for bringing this up! The parameter binding only considers extended JSON `$date` as in `{ $lte : { $date : '?1' } }` and not the `ISODate` keyword. Since...
The matching behaviour is the same when running the query directly on the db. Have you tried adding another case like ` { case: { $eq : ["$field_priority", undefined] },...
Unfortunately `$eq` with `BsonNull.VALUE` does not seem to do the trick. A possible solution might be to make use of `$ifNull` like this ```java CaseOperator.when(Eq.valueOf(IfNull.ifNull("value").then("undefined")).equalToValue("undefined")).then("default") ```
Thank you for the PR @JosRoseboom !
There's room for improvement regarding custom `Codec` usage. The types it would need, to influence the `ConverterConfiguration` by eg. providing a filter that disables registration of default converters, are not...