Doc: Filter by value update (#111881)

doc(transformation): filter by value
This commit is contained in:
Ihor Yeromin 2025-10-01 16:43:14 +02:00 committed by GitHub
parent 2f2289f226
commit 04e9ac0742
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 8 deletions

View File

@ -452,24 +452,28 @@ This transformation is very useful if your data source does not natively filter
The available conditions for all fields are:
- **Regex** - Match a regex expression.
- **Is Null** - Match if the value is null.
- **Is Not Null** - Match if the value is not null.
- **Equal** - Match if the value is equal to the specified value.
- **Different** - Match if the value is different than the specified value.
- **Not Equal** - Match if the value is not equal to the specified value.
- **Regex** - Match a regex expression.
The available conditions for string fields are:
- **Contains substring** - Match if the value contains the specified substring (case insensitive).
- **Does not contain substring** - Match if the value doesn't contain the specified substring (case insensitive).
The available conditions for number and time fields are:
The available conditions for number fields are:
- **Greater** - Match if the value is greater than the specified value.
- **Lower** - Match if the value is lower than the specified value.
- **Greater or equal** - Match if the value is greater or equal.
- **Lower or equal** - Match if the value is lower or equal.
- **Range** - Match a range between a specified minimum and maximum, min and max included. A time field will pre-populate with variables to filter by selected time.
- **In between** - Match a range between a specified minimum and maximum, min and max included.
The available conditions for time fields are:
- **In between** - Match a range between a specified minimum and maximum. The min and max values will pre-populate with variables to filter by selected time.
Consider the following dataset:

View File

@ -369,24 +369,28 @@ This transformation is very useful if your data source does not natively filter
The available conditions for all fields are:
- **Regex** - Match a regex expression.
- **Is Null** - Match if the value is null.
- **Is Not Null** - Match if the value is not null.
- **Equal** - Match if the value is equal to the specified value.
- **Different** - Match if the value is different than the specified value.
- **Not Equal** - Match if the value is not equal to the specified value.
- **Regex** - Match a regex expression.
The available conditions for string fields are:
- **Contains substring** - Match if the value contains the specified substring (case insensitive).
- **Does not contain substring** - Match if the value doesn't contain the specified substring (case insensitive).
The available conditions for number and time fields are:
The available conditions for number fields are:
- **Greater** - Match if the value is greater than the specified value.
- **Lower** - Match if the value is lower than the specified value.
- **Greater or equal** - Match if the value is greater or equal.
- **Lower or equal** - Match if the value is lower or equal.
- **Range** - Match a range between a specified minimum and maximum, min and max included. A time field will pre-populate with variables to filter by selected time.
- **In between** - Match a range between a specified minimum and maximum, min and max included.
The available conditions for time fields are:
- **In between** - Match a range between a specified minimum and maximum. The min and max values will pre-populate with variables to filter by selected time.
Consider the following dataset: