OBJECT

DashboardDefault

link GraphQL Schema definition

  • type DashboardDefault implements Node {
  • # 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!
  • # csp project entity in which the default dashboard will be set
  • cspProjectEntity: Entity
  • # unique identifier for the dashboard
  • dashboardId: String!
  • # indicates if dashboard is visible at an org level or for a user
  • defaultType: DashboardDefaultType!
  • # Opaque global node ID
  • id: ID!
  • # Timestamp at which dashboard is updated. Expressed in UTC ISO-8601 format
  • lastUpdateTime: DateTime
  • # CSP user who updated dashboard
  • updatedBy: User
  • }