Skip to content

Commit 78d56ac

Browse files
authored
Update destination-filters.md Added Filter Conditional Operators
1 parent c8520b2 commit 78d56ac

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
@@ -165,6 +165,17 @@ There are certain destinations to which you may not want to send the `userId`. T
165165
}
166166
```
167167

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

169180
## Important notes
170181

0 commit comments

Comments
 (0)