Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Aug 1, 2023
1 parent 051d9db commit 3fff9ec
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/asciidoc/reference/query-methods.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,27 +55,27 @@ IsNotNull
|findByAddressExists()
findByParameterIsNotNull()
findByObjectIsNotNull()
findByParameterFieldExists()
findByObjectFieldExists()
|...where address exists and != null
...where parameter exists and != null
...where object exists and != null
...where parameter.field exists and != null
...where object.field exists and != null
("Exists" and "IsNotNull" represent the same functionality and can be used interchangeably as bins/fields exist only when not set to null)
|IsNull |findByParameterIsNull()
|IsNull |findByObjectIsNull()
findByParameterFieldIsNull()
findByObjectFieldIsNull()
|...where parameter = null
|...where object = null
...where parameter.field = null
...where object.field = null
("IsNull" in fact means that the bin/field does not exist)
("IsNull" means that the bin/field does not exist)
|True |findByEnabledTrue() |...where x.enabled = true
Expand Down

0 comments on commit 3fff9ec

Please sign in to comment.