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 `rowId` field.
  • rowId: UUID
  • # Checks for equality with the object’s `invoiceDocumentRowId` field.
  • invoiceDocumentRowId: UUID
  • # Checks for equality with the object’s `posNo` field.
  • posNo: TrimmedText
  • # Checks for equality with the object’s `title` field.
  • title: TrimmedText
  • # Checks for equality with the object’s `description` field.
  • description: TrimmedText
  • # Checks for equality with the object’s `orderNo` field.
  • orderNo: TrimmedText
  • # Checks for equality with the object’s `deliveryNo` field.
  • deliveryNo: TrimmedText
  • # Checks for equality with the object’s `productNo` field.
  • productNo: TrimmedText
  • # Checks for equality with the object’s `eanNo` field.
  • eanNo: TrimmedText
  • # Checks for equality with the object’s `gtinNo` field.
  • gtinNo: TrimmedText
  • # Checks for equality with the object’s `quantity` field.
  • quantity: Float
  • # Checks for equality with the object’s `unit` field.
  • unit: TrimmedText
  • # Checks for equality with the object’s `unitNetPrice` field.
  • unitNetPrice: Float
  • # Checks for equality with the object’s `totalPrice` field.
  • totalPrice: Float
  • # Checks for equality with the object’s `discountPercent` field.
  • discountPercent: Float
  • # Checks for equality with the object’s `vatName` field.
  • vatName: TrimmedText
  • # 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
  • }