INPUT_OBJECT

SupplierCreateInput

link GraphQL Schema definition

1input SupplierCreateInput {
2
3# Set Supplier ID, it will be replaced by ID conversion in future
4id: Int
5
6currencyIsoCode: String!
7
8status: Status!
9
10address: SupplierAddressInput
11
12comment: String
13
14paymentTerms: TermsInput
15
16shippingTerms: TermsInput
17
18documentTemplate: DocumentTemplateInput
19
20# Exactly one input field should be provided
21preferredWarehouse: WarehouseInput
22}

link Required by