Тип

TaskCondition

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

"""
A condition to be used against `Task` object types. All fields are tested for equality and combined with a logical ‘and.’
"""
input TaskCondition {
  """Checks for equality with the object’s `rowId` field."""
  rowId: UUID
  """Checks for equality with the object’s `teamId` field."""
  teamId: UUID
  """Checks for equality with the object’s `profileId` field."""
  profileId: UUID
  """Checks for equality with the object’s `serviceId` field."""
  serviceId: UUID
  """Checks for equality with the object’s `scheduleAt` field."""
  scheduleAt: Datetime
  """Checks for equality with the object’s `status` field."""
  status: Int
  """Checks for equality with the object’s `automationId` field."""
  automationId: UUID
  """Checks for equality with the object’s `fileId` field."""
  fileId: UUID
}