docs(llc): add documentation for filter.custom

This commit is contained in:
Salvatore Giordano
2021-09-07 15:43:04 +02:00
parent 86bd9d7a2d
commit 9dc04acf82
@@ -137,6 +137,18 @@ Filter.raw(value: {
});
```
#### Filter.custom
The 'custom' filter is used to create a custom filter in case it does not exists or it's not been added to the SDK yet.
Note that the filter must be supported by the Stream backend in order to work.
```dart
Filter.custom(
operator: '\$max',
value: 10,
)
```
### Group Queries
#### Filter.and