We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e856b commit 7e9016bCopy full SHA for 7e9016b
core/graphql.md
@@ -135,6 +135,24 @@ Or order your results like:
135
}
136
137
```
138
+Another difference with the REST API filters is that the keyword `_list` must be used instead of the traditional `[]` to filter over multiple values.
139
+
140
+For example, if you want to search the offers with a green or a red product you can use the following syntax:
141
+```graphql
142
+{
143
+ offers(product_color_list: ["red", "green"]) {
144
+ edges {
145
+ node {
146
+ id
147
+ product {
148
+ name
149
+ color
150
+ }
151
152
153
154
+}
155
+```
156
157
## Security (`access_control`)
158
0 commit comments