File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
src/connections/destinations Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,17 @@ There are certain destinations to which you may not want to send the `userId`. T
165
165
}
166
166
```
167
167
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 `
168
179
169
180
## Important notes
170
181
You can’t perform that action at this time.
0 commit comments