2021-06-09 17:02:15 +02:00

13 lines
263 B
TypeScript

import * as fragment from '../fragments'
export const CheckoutOne = /* GraphQL */ `
query CheckoutOne($checkoutId: UUID!) {
checkout(token: $checkoutId) {
... on Checkout {
...CheckoutDetails
}
}
}
${fragment.CheckoutDetails}
`