๐ŸคŒAvailable filters

Key Operators:

The Fluent Filterable feature supports a wide range of operators, allowing you to perform complex queries effortlessly:

  • __eq_: Equal

  • __eqc_: Equal (case-sensitive)

  • __ne_: Not equal

  • __lt_: Less than

  • __lte_: Less than or equal to

  • __gt_: Greater than

  • __gte_: Greater than or equal to

  • __in_: Included in an array

  • __notIn_: Not included in an array

  • __contains_: Contains

  • __notContains_: Does not contain

  • __containsc_: Contains (case-sensitive)

  • __notContainsc_: Does not contain (case-sensitive)

  • __null_: Is null

  • __notNull_: Is not null

  • __between_: Is between

  • __notBetween_: Is not between

  • __startsWith_: Starts with

  • __startsWithc_: Starts with (case-sensitive)

  • __endsWith_: Ends with

  • __endsWithc_: Ends with (case-sensitive)

  • __or_: Joins the filters in an "or" expression

  • __and_: Joins the filters in an "and" expression

Last updated

Was this helpful?