OBJECT

DeploymentsConnection

A connection to a list of Deployment values.

link GraphQL Schema definition

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