saleor: fix the checkout fetch query

This commit is contained in:
Zaiste 2021-05-20 13:55:19 +02:00
parent 5b08545a59
commit ae3ff8e2ce
No known key found for this signature in database
GPG Key ID: 15DF7EBC7F2FFE35

View File

@ -4,8 +4,9 @@ export const CheckoutOne = /* GraphQL */ `
query CheckoutOne($checkoutId: UUID!) {
checkout(token: $checkoutId) {
... on Checkout {
${fragment.CheckoutDetails}
...CheckoutDetails
}
}
}
${fragment.CheckoutDetails}
`