2021-02-04 13:23:44 +02:00

16 lines
250 B
TypeScript

const checkoutCreateMutation = /* GraphQL */ `
mutation {
checkoutCreate(input: {}) {
userErrors {
message
field
}
checkout {
id
webUrl
}
}
}
`
export default checkoutCreateMutation