Тип

AccountCondition

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

"""
A condition to be used against `Account` object types. All fields are tested for equality and combined with a logical ‘and.’
"""
input AccountCondition {
  """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 `serviceId` field."""
  serviceId: UUID
  """Checks for equality with the object’s `username` field."""
  username: String
  """Checks for equality with the object’s `profileId` field."""
  profileId: UUID
  """Checks for equality with the object’s `error` field."""
  error: String
  """Checks for equality with the object’s `errorAt` field."""
  errorAt: Datetime
}