mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 14:11:20 +00:00
12 lines
242 B
TypeScript
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}
|
|
}
|
|
}
|
|
}
|
|
`
|