Тип

ProfileConnection

A connection to a list of `Profile` values.

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