Тип

ProxyCondition

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

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