added new guide

This commit is contained in:
Deven Joshi
2021-08-12 19:00:54 +05:30
parent c3444fe491
commit a928bea125
@@ -109,7 +109,7 @@ Filter.exists('name', true)
### Group Queries ### Group Queries
#### FilterOperator.and #### Filter.and
The 'and' operator combines multiple queries. The 'and' operator combines multiple queries.
@@ -120,7 +120,7 @@ final filter = Filter.and([
]) ])
``` ```
#### FilterOperator.or #### Filter.or
Combines the provided filters and matches the values matched by at least one of the filters. Combines the provided filters and matches the values matched by at least one of the filters.
@@ -131,7 +131,7 @@ final filter = Filter.or([
]) ])
``` ```
#### FilterOperator.nor #### Filter.nor
Combines the provided filters and matches the values not matched by all the filters. Combines the provided filters and matches the values not matched by all the filters.