OBJECT

DeploymentStatusConnection

The connection type for DeploymentStatus.

link GraphQL Schema definition

1type DeploymentStatusConnection {
2
3# A list of edges.
4edges: [DeploymentStatusEdge]
5
6# A list of nodes.
7nodes: [DeploymentStatus]
8
9# Information to aid in pagination.
10pageInfo: PageInfo!
11
12# Identifies the total count of items in the connection.
13totalCount: Int!
14
15}