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 @@ -164,6 +164,17 @@ There are certain destinations to which you may not want to send the `userId`. T
164
164
}
165
165
```
166
166
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 `
167
178
168
179
## Important notes
169
180
You can’t perform that action at this time.
0 commit comments