OBJECT

Dashboard

link GraphQL Schema definition

  • type Dashboard implements Node, NodeVersion {
  • # category represents a unique dashboard type can take any form as consumer/UI
  • # pleases
  • category: String!
  • # CSP user who created dashboard
  • createdBy: User!
  • # Timestamp at which dashboard is created. Expressed in UTC ISO-8601 format
  • creationTime: DateTime!
  • # cspProject Entity describing project visibility scope for this dashboard
  • cspProjectEntity: [Entity!]
  • # unique identifier for the dashboard
  • dashboardId: String!
  • # indicates if dashboard is visible at an org level or for a user
  • dashboardVisibility: DashboardVisibility!
  • # Opaque global node ID
  • id: ID!
  • # Timestamp at which dashboard is updated. Expressed in UTC ISO-8601 format
  • lastUpdateTime: DateTime
  • # Opaque version string for this graph node instance
  • nodeVersion: ID!
  • # This represents a dashboard structure than can be rendered using a UI technology
  • payload: JSON!
  • # CSP user who updated dashboard
  • updatedBy: User
  • }