OBJECT

ImagesConnection

A connection to a list of Image values.

link GraphQL Schema definition

  • type ImagesConnection {
  • # A list of `Image` objects.
  • nodes: [Image]!
  • # A list of edges which contains the `Image` and cursor to aid in pagination.
  • edges: [ImagesEdge!]!
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The count of *all* `Image` you could get from the connection.
  • totalCount: Int!
  • }