mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 00:46:59 +00:00
13 lines
263 B
TypeScript
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}
|
|
`
|