Skip to main content
Version: Next

Query Filter Contains

Adds a contains filter clause onto a query

Description

Adds a contains predicate to the given query. This predicate indicates to the query to filter out the objects whose the specified property does not contain the provided value.

Inputs

  • query (Query): The query to which the contains filter must be added
  • property (Property): The property used by the filter to execute the predicate to check if that property contains the given value.
  • case sensitive (Boolean): If true, take care of the case, otherwise apply the filter on lower case strings.
  • value (String): The value to which the property is compared. Check if the property contains that value.

Outputs

  • query (Query): The query including the contains filter