commerce/framework/saleor/utils/mutations/checkout-create.ts
2021-06-09 17:02:13 +02:00

21 lines
382 B
TypeScript

import * as fragment from '../fragments'
export const CheckoutCreate = /* GraphQL */ `
mutation CheckoutCreate {
checkoutCreate(input: {
email: "customer@example.com",
lines: [],
channel: "default-channel"
}) {
errors {
code
field
message
}
checkout {
${fragment.CheckoutDetails}
}
}
}
`