16 lines
242 B
GraphQL
16 lines
242 B
GraphQL
mutation ManagerSetOrderOffer($input: SetOrderOfferInput!) {
|
|
managerSetOrderOffer(input: $input) {
|
|
id
|
|
code
|
|
status
|
|
deliveryTerms
|
|
deliveryFee
|
|
totalPrice
|
|
items {
|
|
id
|
|
unitPrice
|
|
lineTotal
|
|
}
|
|
}
|
|
}
|