INPUT_OBJECT

DocumentCommentCondition

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

link GraphQL Schema definition

  • input DocumentCommentCondition {
  • # 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 `commentedBy` field.
  • commentedBy: UUID
  • # Checks for equality with the object’s `message` field.
  • message: JSON
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }