applications
This query returns the Applications within the Environment.
Learn more about Applications.
The applications
query uses cursor-based pagination typical of GraphQL APIs. You can use the pairs of parameters first
and after
or last
and before
to page forward or backward through the results, respectively.
For forward pagination, the first
parameter defines the number of results to return, and the after
parameter defines the cursor to continue from. You should pass the cursor for the last result of the current page to after
.
For backward pagination, the last
parameter defines the number of results to return, and the before
parameter defines the cursor to continue from. You should pass the cursor for the first result of the current page to before
.
Arguments
Returns
Nullable ApplicationConnection
The Application connection object.
Learn more about pagination in GraphQL.
applications.edges non-null array of ApplicationEdge
The Application connection's edges.
applications.nodes non-null array of Application
The Application connection's nodes.
applications.pageInfo non-null PageInfo
The Application connection's page info.