Тип

Service

Справочник целевых платформ (логотип, ключ). Только чтение.

"""Справочник целевых платформ (логотип, ключ). Только чтение."""
type Service implements Node {
  """Непрозрачный GraphQL Global ID."""
  id: ID!
  """UUID платформы."""
  rowId: UUID!
  createdAt: Datetime!
  updatedAt: Datetime!
  """Стабильный ключ (`slug`) платформы."""
  key: String!
  """Отображаемое имя."""
  name: JSON!
  """URL логотипа."""
  logo: String
  """Reads and enables pagination through a set of `Task`."""
  tasksByServiceId(
    """
    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!
  """Reads and enables pagination through a set of `Account`."""
  accountsByServiceId(
    """
    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!
  """Reads and enables pagination through a set of `Automation`."""
  automationsByServiceId(
    """
    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: AutomationCondition
    """
    A filter to be used in determining which values should be returned by the collection.
    """
    filter: AutomationFilter
    """The method to use when ordering `Automation`."""
    orderBy: [AutomationOrderBy!] = [PRIMARY_KEY_ASC]
  ): AutomationConnection!
}