Skip to content

ComponentConnection

The connection type for Component.

graphql
type ComponentConnection {
  edges: [ComponentEdge!]!
  nodes: [Component!]!
  pageInfo: PageInfo!
  totalCount: Int!
}

Fields

ComponentConnection.edges ● [ComponentEdge!]! non-null object

A list of all edges of the current page.

ComponentConnection.nodes ● [Component!]! non-null object

A list of all nodes of the current page.

ComponentConnection.pageInfo ● PageInfo! non-null object

Information to aid in pagination.

ComponentConnection.totalCount ● Int! non-null scalar

Identifies the total count of items in the connection.

Returned By

components query

Member Of

ComponentPermission object ● ComponentTemplate object

Released under the MIT License.