Mutation
(OBJECT)
link GraphQL Schema definition
- type Mutation {
- # creates a preinvoice (payment request) for an order
- #
- # Arguments
- # order_num: order's evidence number for which to create
- # preinvoice
- # send_notification: possibility to tweak default system behavior
- # or send multiple notifications
- (
- String!, :
- NotificationRequest!] : [
- ): Preinvoice
- # creates final invoice for preinvoice
- #
- # Arguments
- # preinvoice_num: preinvoice (payment request's) evidence number
- # send_notification: possibility to tweak default system behavior
- # or send multiple notifications
- (
- String!, :
- NotificationRequest!] : [
- ): Invoice
- # sets order status
- #
- # Arguments
- # order_num: order's evidence number for which to change the
- # status
- # status_id: system's internal status' id
- # send_notification: possibility to tweak default system behavior
- # or send multiple notifications
- (
- String!, :
- Int!, :
- NotificationRequest!] : [
- ): Order
- # change status, quantity of warehouse item
- #
- # Arguments
- # warehouse_item:
- # send_notification:
- (
- WarehouseItemInput, :
- NotificationRequest!] : [
- ): WarehouseItem
- }
link Require by
This element is not required by anyone