INPUT_OBJECT

DocumentCondition

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

link GraphQL Schema definition

  • input DocumentCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `title` field.
  • title: String
  • # Checks for equality with the object’s `name` field.
  • name: String
  • # Checks for equality with the object’s `language` field.
  • language: LanguageCode
  • # Checks for equality with the object’s `version` field.
  • version: Datetime
  • # Checks for equality with the object’s `numPages` field.
  • numPages: Int
  • # Checks for equality with the object’s `numAttachPages` field.
  • numAttachPages: Int
  • # Checks for equality with the object’s `categoryId` field.
  • categoryId: UUID
  • # Checks for equality with the object’s `workflowStepId` field.
  • workflowStepId: UUID
  • # Checks for equality with the object’s `importedBy` field.
  • importedBy: UUID
  • # Checks for equality with the object’s `importedAt` field.
  • importedAt: Datetime
  • # Checks for equality with the object’s `periodDate` field.
  • periodDate: Datetime
  • # Checks for equality with the object’s `rearrangedAt` field.
  • rearrangedAt: Datetime
  • # Checks for equality with the object’s `rearrangedBy` field.
  • rearrangedBy: UUID
  • # Checks for equality with the object’s `pagesConfirmedAt` field.
  • pagesConfirmedAt: Datetime
  • # Checks for equality with the object’s `pagesConfirmedBy` field.
  • pagesConfirmedBy: UUID
  • # Checks for equality with the object’s `checkoutUserId` field.
  • checkoutUserId: UUID
  • # Checks for equality with the object’s `checkoutReason` field.
  • checkoutReason: String
  • # Checks for equality with the object’s `checkoutTime` field.
  • checkoutTime: Datetime
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }