INPUT_OBJECT

DocumentVersionCondition

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

link GraphQL Schema definition

  • input DocumentVersionCondition {
  • # 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 `version` field.
  • version: Datetime
  • # Checks for equality with the object’s `prevVersion` field.
  • prevVersion: Datetime
  • # Checks for equality with the object’s `commitUserId` field.
  • commitUserId: UUID
  • # Checks for equality with the object’s `commitReason` field.
  • commitReason: String
  • # Checks for equality with the object’s `addedFiles` field.
  • addedFiles: [String]
  • # Checks for equality with the object’s `removedFiles` field.
  • removedFiles: [String]
  • # Checks for equality with the object’s `modifiedFiles` field.
  • modifiedFiles: [String]
  • }