File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -183,9 +183,9 @@ This library also supports Shopify's new [GraphQL API](https://help.shopify.com/
183183result = shopify.GraphQL().execute(' { shop { name id } }' )
184184```
185185
186- You can perform more complex operations using the ` variables ` and ` operation_name ` parameters of ` execute ` .
186+ You can perform more complex operations using the ` variables ` and ` operation_name ` parameters of ` execute ` .
187187
188- For example, this GraphQL document uses a fragment to construct two named queries - one for a single order, and one for multiple orders:
188+ For example, this GraphQL document uses a fragment to construct two named queries - one for a single order, and one for multiple orders:
189189
190190``` graphql
191191 # ./order_queries.graphql
@@ -195,21 +195,21 @@ For example, this GraphQL document uses a fragment to construct two named querie
195195 name
196196 createdAt
197197 }
198-
198+
199199 query GetOneOrder ($order_id : ID ! ){
200200 node (id : $order_id ){
201201 ... OrderInfo
202202 }
203203 }
204-
204+
205205 query GetManyOrders ($order_ids : [ID ]! ){
206206 nodes (ids : $order_ids ){
207207 ... OrderInfo
208208 }
209209 }
210210```
211211
212- Now you can chose which operation to execute:
212+ Now you can chose which operation to execute:
213213
214214``` python
215215# Load the document with both queries
You can’t perform that action at this time.
0 commit comments