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 `rowId` field.
  • rowId: UUID
  • # Checks for equality with the object’s `documentRowId` field.
  • documentRowId: UUID
  • # Checks for equality with the object’s `version` field.
  • version: VersionTime
  • # Checks for equality with the object’s `prevVersion` field.
  • prevVersion: VersionTime
  • # Checks for equality with the object’s `commitUserRowId` field.
  • commitUserRowId: 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]
  • }