mirror of
https://github.com/vercel/commerce.git
synced 2025-04-04 10:45:54 +00:00
16 lines
250 B
TypeScript
16 lines
250 B
TypeScript
const checkoutCreateMutation = /* GraphQL */ `
|
|
mutation {
|
|
checkoutCreate(input: {}) {
|
|
userErrors {
|
|
message
|
|
field
|
|
}
|
|
checkout {
|
|
id
|
|
webUrl
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default checkoutCreateMutation
|