Posted on October 13, 2024
CompletedThis query is working fine in MongoDB Compass.
{ createdDateTime: {$lt : ISODate(“2024-10-13T01:30:00.000Z”)}}
However it’s not giving any result when used in Spring Data MongoDB using regex in Java.
Example query method
@Query(“{‘createdDateTime’ : { $regex: ?0, $options: ‘i’ }}”)
List<User> findAllWithRegEx(String createdDateTimeRegEx);
© 2024 - GRAB A SALE