Skip to content

Commit d635453

Browse files
authored
Merge pull request #7628 from segmentio/longstoryshort-patch-2
Update supported Actions trigger operators
2 parents 7015cb2 + 73a6fd9 commit d635453

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/connections/destinations/actions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Mapping fields are case-sensitive. The following type filters and operators are
231231

232232
- **Event type** (`is`/`is not`). This allows you to filter by the [event types in the Segment Spec](/docs/connections/spec).
233233
- **Event name** (`is`, `is not`, `contains`, `does not contain`, `starts with`, `ends with`). Use these filters to find events that match a specific name, regardless of the event type.
234-
- **Event property** (`is`, `is not`, `less than`, `less than or equal to`, `greater than`, `greater than or equal to`, `contains`, `does not contain`, `starts with`, `ends with`, `exists`, `does not exist`). Use these filters to trigger the action only when an event with a specific property occurs.
234+
- **Event property** (`is`, `is equals to`, `is not`, `is not equals to`, `less than`, `less than or equal to`, `greater than`, `greater than or equal to`, `contains`, `does not contain`, `starts with`, `ends with`, `exists`, `does not exist`). Use these filters to trigger the action only when an event with a specific property occurs.
235235

236236
You can specify nested properties using dot notation, for example `context.app.name`. If the property might appear in more than one format or location, you can use an ANY statement and add conditions for each of those formats. For example, you might filter for both `context.device.type = ios` as well as `context.os.name = "iPhone OS``"`
237237
The `does` `not exist` operator matches both a `null` value or a missing property.
@@ -244,8 +244,8 @@ Mapping fields are case-sensitive. The following type filters and operators are
244244
> Operators support matching on values with a **string** data type:
245245
> - `is`, `is not`, `contains`, `does not contain`, `starts with`, `ends with`
246246
>
247-
> Operators that support matching on values with either a **string** or **numeric** data type:
248-
> - `is less than`, `is less than or equal to`, `is greater than`, `is greater than or equal to`
247+
> Operators that support matching on values with **numeric** data type:
248+
> - `is equals to`, `is not equals to`, `is less than`, `is less than or equal to`, `is greater than`, `is greater than or equal to`
249249
>
250250
> Operators that support matching on values with a **boolean** data type:
251251
> - `is true`, `is false`

0 commit comments

Comments
 (0)