Skip to content

Commit 7b4b435

Browse files
committed
Run pre-commit hook to strip trailing spaces
1 parent 9d90302 commit 7b4b435

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ This library also supports Shopify's new [GraphQL API](https://help.shopify.com/
183183
result = 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

0 commit comments

Comments
 (0)