mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
rename folder
This commit is contained in:
17
providers/saleor/utils/mutations/checkout-line-add.ts
Normal file
17
providers/saleor/utils/mutations/checkout-line-add.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import * as fragment from '../fragments'
|
||||
|
||||
export const CheckoutLineAdd = /* GraphQL */ `
|
||||
mutation CheckoutLineAdd($checkoutId: ID!, $lineItems: [CheckoutLineInput!]!) {
|
||||
checkoutLinesAdd(checkoutId: $checkoutId, lines: $lineItems) {
|
||||
errors {
|
||||
code
|
||||
field
|
||||
message
|
||||
}
|
||||
checkout {
|
||||
...CheckoutDetails
|
||||
}
|
||||
}
|
||||
}
|
||||
${fragment.CheckoutDetails}
|
||||
`
|
Reference in New Issue
Block a user