Skip to content

ViewConnection

The connection type for View.

graphql
type ViewConnection {
  edges: [ViewEdge!]!
  nodes: [View!]!
  pageInfo: PageInfo!
  totalCount: Int!
}

Fields

ViewConnection.edges ● [ViewEdge!]! non-null object

A list of all edges of the current page.

ViewConnection.nodes ● [View!]! non-null object

A list of all nodes of the current page.

ViewConnection.pageInfo ● PageInfo! non-null object

Information to aid in pagination.

ViewConnection.totalCount ● Int! non-null scalar

Identifies the total count of items in the connection.

Member Of

Project object

Released under the MIT License.