Тип

AccountConnection

A connection to a list of `Account` values.

"""A connection to a list of `Account` values."""
type AccountConnection {
  """A list of `Account` objects."""
  nodes: [Account]!
  """
  A list of edges which contains the `Account` and cursor to aid in pagination.
  """
  edges: [AccountEdge]!
  """Information to aid in pagination."""
  pageInfo: PageInfo!
  """The count of *all* `Account` you could get from the connection."""
  totalCount: Int!
}