Skip to content

ProjectConnection

The connection type for Project.

graphql
type ProjectConnection {
  edges: [ProjectEdge!]!
  nodes: [Project!]!
  pageInfo: PageInfo!
  totalCount: Int!
}

Fields

ProjectConnection.edges ● [ProjectEdge!]! non-null object

A list of all edges of the current page.

ProjectConnection.nodes ● [Project!]! non-null object

A list of all nodes of the current page.

ProjectConnection.pageInfo ● PageInfo! non-null object

Information to aid in pagination.

ProjectConnection.totalCount ● Int! non-null scalar

Identifies the total count of items in the connection.

Returned By

projects query

Member Of

ComponentVersion object ● ProjectPermission object

Released under the MIT License.