Skip to content

Commit a1c028e

Browse files
Merge pull request #5460 from segmentio/lizkane222-patch-30
Update destination-filters.md Added Filter Conditional Operators
2 parents 7bccc51 + 8f3d416 commit a1c028e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/connections/destinations/destination-filters.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,17 @@ There are certain destinations to which you may not want to send the `userId`. T
164164
}
165165
```
166166

167+
## Filter conditional operators
168+
* `contains`: checks whether the field's value includes the provided substring
169+
* `glob matches`: case sensitive, checks whether the value matches provided string
170+
* `is (number)`: checks whether the value is exactly the provided integer
171+
* `is (string)`: checks whether the value is exactly the provided string
172+
* `is false`: checks whether the value is type boolean and is `false`
173+
* `is not (number)`: checks whether the value isn't exactly the provided integer
174+
* `is not (string)`: checks whether the value isn't exactly the provided string
175+
* `is not null`: checks that the existing field does not have a `null` value
176+
* `is null`: check that the existing field has a `null` value
177+
* `is true`: checks whether the value is type boolean and is `true`
167178

168179
## Important notes
169180

0 commit comments

Comments
 (0)