@@ -102,7 +102,7 @@ The following tables list the query languages's available functions.
102
102
| Syntax | ` sources({exclude: {a: Array}}) ` <br >` a ` - an array of source ` ids ` to exclude |
103
103
| Return Type | ` StreamFilter ` |
104
104
| Description | Filters the stream to only items whose source ` id ` does not match the exclusion list. |
105
- | Example | ` sources({exclude: [ 'QgRHeujRJBM9j18yChyC', '/;hSBZDqGDPvXCKHbikPm'] }) ` |
105
+ | Example | ` sources({exclude: 'QgRHeujRJBM9j18yChyC', '/;hSBZDqGDPvXCKHbikPm'}) ` |
106
106
107
107
| ` within ` | |
108
108
| ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -243,7 +243,7 @@ The following tables list the query languages's available functions.
243
243
| Syntax | ` contains({a: Array}) ` <br >` a ` - array of possible values |
244
244
| Return Type | ` Comparator ` |
245
245
| Description | Matches when the value contains one of the elements of the parameter array as a substring. |
246
- | Example | ` contains([ 'shoes','shirts'] ) ` |
246
+ | Example | ` contains('shoes','shirts') ` |
247
247
248
248
| ` omits ` | |
249
249
| ----------- | ------------------------------------------------------------------------------------------------------------------------------- |
@@ -269,7 +269,7 @@ The following tables list the query languages's available functions.
269
269
| Syntax | ` one_of({a: Array}) ` <br >` a ` - array of possible values |
270
270
| Return Type | ` Comparator ` |
271
271
| Description | Matches when the value exactly matches one of the values from the parameter array. |
272
- | Example | ` one_of([ 'shoes','shirts'] ) ` |
272
+ | Example | ` one_of('shoes','shirts') ` |
273
273
274
274
| ` before_date ` | |
275
275
| ------------- | --------------------------------------------------------- |
0 commit comments