Тип

Profile

Облачный телефон: единица автоматизации команды. Центральный объект для задач, прокси и аккаунтов.

"""
Облачный телефон: единица автоматизации команды. Центральный объект для задач, прокси и аккаунтов.
"""
type Profile implements Node {
  """Непрозрачный GraphQL Global ID."""
  id: ID!
  """UUID первичного ключа — предпочтительный идентификатор в мутациях."""
  rowId: UUID!
  createdAt: Datetime
  updatedAt: Datetime
  teamId: UUID!
  """Отображаемое имя профиля."""
  name: String!
  """Когда профиль последний раз был запущен."""
  startedAt: Datetime
  """Ссылка на удалённый доступ, если доступна."""
  url: String
  """Тип конфигурации устройства."""
  type: String
  """Подтип конфигурации."""
  subType: String
  """Версия образа или сборки профиля."""
  version: String
  """Последняя ошибка жизненного цикла профиля."""
  error: String
  """Дополнительные настройки профиля (JSON)."""
  metadata: JSON
  """Прикреплённый прокси."""
  proxyId: UUID
  """Координаты GPS для эмуляции устройства."""
  gps: JSON
  errorAt: Datetime
  """Дата окончания оплаченного периода устройства."""
  paidUntil: Datetime
  """Справочная геолокация."""
  locationId: UUID
  """Reads a single `Location` that is related to this `Profile`."""
  locationByLocationId: Location
  """Данные прокси, если назначен."""
  proxyByProxyId: Proxy
  """Список задач на этом профиле."""
  tasksByProfileId(
    """
    Only read the first `n` values of the set.
    Max: 100
    """
    first: Int = 10
    """
    Only read the last `n` values of the set.
    Max: 100
    """
    last: Int
    """
    Skip the first `n` values from our `after` cursor, an alternative to cursor
    based pagination. May not be used with `last`.
    """
    offset: Int
    """Read all values in the set before (above) this cursor."""
    before: Cursor
    """Read all values in the set after (below) this cursor."""
    after: Cursor
    """
    A condition to be used in determining which values should be returned by the collection.
    """
    condition: TaskCondition
    """
    A filter to be used in determining which values should be returned by the collection.
    """
    filter: TaskFilter
    """The method to use when ordering `Task`."""
    orderBy: [TaskOrderBy!] = [PRIMARY_KEY_ASC]
  ): TaskConnection!
  """Привязанные социальные аккаунты."""
  accountsByProfileId(
    """
    Only read the first `n` values of the set.
    Max: 100
    """
    first: Int = 10
    """
    Only read the last `n` values of the set.
    Max: 100
    """
    last: Int
    """
    Skip the first `n` values from our `after` cursor, an alternative to cursor
    based pagination. May not be used with `last`.
    """
    offset: Int
    """Read all values in the set before (above) this cursor."""
    before: Cursor
    """Read all values in the set after (below) this cursor."""
    after: Cursor
    """
    A condition to be used in determining which values should be returned by the collection.
    """
    condition: AccountCondition
    """
    A filter to be used in determining which values should be returned by the collection.
    """
    filter: AccountFilter
    """The method to use when ordering `Account`."""
    orderBy: [AccountOrderBy!] = [PRIMARY_KEY_ASC]
  ): AccountConnection!
}