INPUT_OBJECT

InvoiceItemCondition

A condition to be used against InvoiceItem object types. All fields are tested for equality and combined with a logical ‘and.’

link GraphQL Schema definition

  • input InvoiceItemCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `documentId` field.
  • documentId: UUID
  • # Checks for equality with the object’s `posNr` field.
  • posNr: String
  • # Checks for equality with the object’s `description` field.
  • description: String
  • # Checks for equality with the object’s `productNr` field.
  • productNr: String
  • # Checks for equality with the object’s `eanNr` field.
  • eanNr: String
  • # Checks for equality with the object’s `gtinNr` field.
  • gtinNr: String
  • # Checks for equality with the object’s `quantity` field.
  • quantity: Float
  • # Checks for equality with the object’s `unitNetPrice` field.
  • unitNetPrice: Float
  • # Checks for equality with the object’s `discountPercent` field.
  • discountPercent: Float
  • # Checks for equality with the object’s `vatPercent` field.
  • vatPercent: Float
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }