We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f62feac commit 423e10bCopy full SHA for 423e10b
src/main/asciidoc/reference/mongo-repositories.adoc
@@ -281,6 +281,10 @@ lower / upper bounds (`$gt` / `$gte` & `$lt` / `$lte`) according to `Range`
281
| `Exists`
282
| `findByLocationExists(boolean exists)`
283
| `{"location" : {"$exists" : exists }}`
284
+
285
+| `IgnoreCase`
286
+| `findByUsernameIgnoreCase(String username)`
287
+| `{"username" : {"$regex" : "^username$", "$options" : "i" }}`
288
|===
289
290
NOTE: If the property criterion compares a document, the order of the fields and exact equality in the document matters.
0 commit comments