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

12 lines
242 B
TypeScript

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