From 3fff9ecf10cc27b96cc82227426196a996214323 Mon Sep 17 00:00:00 2001 From: agrgr Date: Tue, 1 Aug 2023 15:40:33 +0300 Subject: [PATCH] update documentation --- src/main/asciidoc/reference/query-methods.adoc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/asciidoc/reference/query-methods.adoc b/src/main/asciidoc/reference/query-methods.adoc index caad3e015..1d5a2d1b6 100644 --- a/src/main/asciidoc/reference/query-methods.adoc +++ b/src/main/asciidoc/reference/query-methods.adoc @@ -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