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
Copy file name to clipboardExpand all lines: pages/en/querying/graphql-api.mdx
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,6 +168,56 @@ This can be useful if you are looking to fetch only entities whose child-level e
168
168
}
169
169
```
170
170
171
+
#### Logical operators
172
+
173
+
You can group multiple parameters in the same `where` argument using the `and` or the `or` operators to filter results based on more than one criteria.
174
+
175
+
##### `AND` Operator
176
+
177
+
In the following example, we are filtering for challenges with `outcome``succeeded` and `number` greater than or equal to `100`.
0 commit comments