Proxy
Прокси для облачных профилей: поля `host`, `port` и `credentials`, статус и замена через `replaceProxy`.
"""
Прокси для облачных профилей: поля `host`, `port` и `credentials`, статус и замена через `replaceProxy`.
"""
type Proxy implements Node {
"""Непрозрачный GraphQL Global ID."""
id: ID!
"""UUID прокси."""
rowId: UUID!
createdAt: Datetime
updatedAt: Datetime
teamId: UUID!
"""Тип прокси (например, `HTTP` или `SOCKS`)."""
type: String!
"""Хост прокси."""
host: String!
"""Порт."""
port: Int!
"""Логин прокси."""
username: String!
name: String
"""Дополнительные данные (JSON)."""
metadata: JSON
error: String
"""Состояние проверки и доступности."""
status: Boolean!
info: JSON
"""Внешний IP, если известен."""
ip: String
errorAt: Datetime
"""Профили, использующие этот прокси."""
profilesByProxyId(
"""
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: ProfileCondition
"""
A filter to be used in determining which values should be returned by the collection.
"""
filter: ProfileFilter
"""The method to use when ordering `Profile`."""
orderBy: [ProfileOrderBy!] = [PRIMARY_KEY_ASC]
): ProfileConnection!
}