@@ -165,17 +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
+ ## 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 `
179
179
180
180
## Important notes
181
181
0 commit comments