OBJECT

ServerActionsConnection

A connection to a list of ServerAction values.

link GraphQL Schema definition

  • type ServerActionsConnection {
  • # A list of `ServerAction` objects.
  • nodes: [ServerAction]!
  • # A list of edges which contains the `ServerAction` and cursor to aid in
  • # pagination.
  • edges: [ServerActionsEdge!]!
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The count of *all* `ServerAction` you could get from the connection.
  • totalCount: Int!
  • }