INPUT_OBJECT

StockSetProductSizeInput

link GraphQL Schema definition

1input StockSetProductSizeInput {
2
3# Exactly one input field should be provided
4productSize: ProductSizeInput!
5
6# Stock value must be greater or equal to 0
7quantity: Int!
8
9unitCost: MonetaryValueInput
10}