Resolve merge conflicts: integrate supply order functionality with Wildberries features
This commit is contained in:
@ -1078,6 +1078,23 @@ export const UPDATE_EMPLOYEE_SCHEDULE = gql`
|
||||
}
|
||||
`
|
||||
|
||||
export const CREATE_WILDBERRIES_SUPPLY = gql`
|
||||
mutation CreateWildberriesSupply($input: CreateWildberriesSupplyInput!) {
|
||||
createWildberriesSupply(input: $input) {
|
||||
success
|
||||
message
|
||||
supply {
|
||||
id
|
||||
deliveryDate
|
||||
status
|
||||
totalAmount
|
||||
totalItems
|
||||
createdAt
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
// Админ мутации
|
||||
export const ADMIN_LOGIN = gql`
|
||||
mutation AdminLogin($username: String!, $password: String!) {
|
||||
|
Reference in New Issue
Block a user