Private expressionPrivate parentPrivate addAdds an and clause to the current condition and returns it for further chaining.
Adds an any clause to the current condition and returns it for further chaining.
Adds a condition that a field value must contain a specified string.
Ends the definition of the current WhereQuery. You need to call this method in order to continue with the definition of the parent Query. All other WhereQuery methods return the current instance of WhereQuery to allow chaining.
Adds a condition that a field value must end with a specified string.
Adds a condition that a field must be equal to a specific value.
Adds a condition that a field must be greater than a certain value. Applicable to Number, String, and Date fields.
Adds a condition that a field must be greater than or equal to a certain value. Applicable to Number, String, and Date fields.
Adds a condition that specific values should be found in that field e.g. Id in (id1, id2, id3).
Adds a condition that a field must be less than a certain value. Applicable to Number, String, and Date fields.
Adds a condition that a field must be less than or equal to a certain value. Applicable to Number, String, and Date fields.
Adds a condition that a field must not be equal to a specific value.
Adds a not clause to the current condition and returns it for further chaining.
Adds an or clause to the current condition and returns it for further chaining.
Private simpleAdds a condition that a field value must start with a specified string.
Generated using TypeDoc
A fluent API operation for creating a filter for a query by chaining different rules.