diff --git a/src/graphql/checkoutShippingLineUpdateMutation.graphql b/src/graphql/checkoutShippingLineUpdateMutation.graphql new file mode 100644 index 000000000..81ada4845 --- /dev/null +++ b/src/graphql/checkoutShippingLineUpdateMutation.graphql @@ -0,0 +1,10 @@ +mutation ($checkoutId: ID!, $shippingRateHandle: String!) { + checkoutShippingLineUpdate(checkoutId: $checkoutId, shippingRateHandle: $shippingRateHandle) { + checkout { + ...CheckoutFragment + } + checkoutUserErrors { + ...CheckoutUserErrorFragment + } + } +}