SupplierUpdateInput
The possible fields in order to update a supplier.
input SupplierUpdateInput {
category: SupplierCategory
description: String
inStockProducts: Int
name: String
notificationUserNames: SupplierNotificationUserNamesInput
ownerUserName: String
shipFromAddress: AddressInput
status: SupplierStatus
supplierId: ID!
topVendors: [String!]
}
Fields
SupplierUpdateInput.category
● SupplierCategory
enum
Indicates the vertical the majority of a Supplier's goods are in.
SupplierUpdateInput.description
● String
scalar
SupplierUpdateInput.inStockProducts
● Int
scalar
The approximate number of in stock products this Supplier has on a typical basis.
SupplierUpdateInput.name
● String
scalar
SupplierUpdateInput.notificationUserNames
● SupplierNotificationUserNamesInput
input
These users will get notified if something requires attention for this Supplier. If none are provided, ownerUserName will be notified.
SupplierUpdateInput.ownerUserName
● String
scalar
SupplierUpdateInput.shipFromAddress
● AddressInput
input
The address where this Supplier's goods ship from.
SupplierUpdateInput.status
● SupplierStatus
enum
SupplierUpdateInput.supplierId
● ID!
non-null scalar
SupplierUpdateInput.topVendors
● [String!]
list scalar
The top Brands or Vendors this Supplier carries, limit 5 and 256 characters each.
Member of
updateSupplier
mutation