mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 06:01:21 +00:00
16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
export const checkoutDetailsFragment = `
|
|
id
|
|
token
|
|
`
|
|
|
|
const getCheckoutQuery = /* GraphQL */ `
|
|
query($checkoutId: UUID!) {
|
|
checkout(token: $checkoutId) {
|
|
... on Checkout {
|
|
${checkoutDetailsFragment}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default getCheckoutQuery
|