OBJECT

DashboardConnection

Dashboard Connection Type

link GraphQL Schema definition

  • type DashboardConnection implements Connection {
  • # count of dashboards on this page
  • count: Int!
  • # dashboards instances
  • dashboards: [Dashboard!]
  • # dashboard edge
  • edges: [DashboardEdge!]
  • # Represents pagination information in Relay about the edges.
  • pageInfo: PageInfo!
  • # Total count of dashboards, may not always be an exact number and hence consumers
  • # should not rely only on this
  • totalCount: Int
  • }