Тип

FileConnection

A connection to a list of `File` values.

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