INPUT_OBJECT

CreateInventoryItemsMutationInput

The input object that defines the fields for the createInventoryItems mutation.

link GraphQL Schema definition

  • input CreateInventoryItemsMutationInput {
  • # The ID of an `InventoryModel`.
  • inventory_model_id: Int64Bit!
  • # The type of entity that this inventory item is assigned to.
  • inventoryitemable_type: InventoryitemableType!
  • # The ID of the entity that this inventory item is assigned to.
  • inventoryitemable_id: Int64Bit!
  • # The ID of a `DeploymentType`.
  • deployment_type_id: Int64Bit
  • # The contents of the fields for the items being added.
  • items: [InventoryItemFieldsMutationInput]!
  • }

link Require by