From ae3ff8e2cea521fae4510e5f9c6ca55d8aca305e Mon Sep 17 00:00:00 2001
From: Zaiste <oh@zaiste.net>
Date: Thu, 20 May 2021 13:55:19 +0200
Subject: [PATCH] saleor: fix the checkout fetch query

---
 framework/saleor/utils/queries/checkout-one.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/framework/saleor/utils/queries/checkout-one.ts b/framework/saleor/utils/queries/checkout-one.ts
index 0415c1875..ce4823671 100644
--- a/framework/saleor/utils/queries/checkout-one.ts
+++ b/framework/saleor/utils/queries/checkout-one.ts
@@ -4,8 +4,9 @@ export const CheckoutOne = /* GraphQL */ `
   query CheckoutOne($checkoutId: UUID!) {
     checkout(token: $checkoutId) {
       ... on Checkout {
-        ${fragment.CheckoutDetails}
+        ...CheckoutDetails
       }
     }
   }
+  ${fragment.CheckoutDetails}
 `