You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`.optional(cond, qb)`| Extends the query only if the `condition` is `true`. This can be used almost anywhere in a query for example to conditionally sort or limit it. |
158
-
|`.anyOf(list, qb)`| Extends the query for each value in `values` and combines the conditions using logical **or**. |
159
-
|`.allOf(list, qb)`| Extends the query for each value in `values` and combines the conditions using logical **and**. |
158
+
|`.anyOf(list, qb)`| Extends the query for each value in `list` and combines the conditions using logical **or**. |
159
+
|`.allOf(list, qb)`| Extends the query for each value in `list` and combines the conditions using logical **and**. |
160
160
161
161
In this example, we build a method that can find shoes with an optional filter:
0 commit comments