INPUT_OBJECT

DashboardInput

link GraphQL Schema definition

  • input DashboardInput {
  • # category/subsystem to which the dashboard belongs
  • category: String!
  • # csp project scoping for current dashboard
  • cspProjectEntityIds: [EntityId!]
  • # unique identifier for dashboard, to be used for update operation
  • dashboardId: String
  • # indicates if dashboard is visible at an org level or for a user
  • dashboardVisibility: DashboardVisibility
  • # dashboard version, used for optimistic locking on updates.
  • nodeVersion: ID
  • # Represents JSON payload containing all the dashboard widgets, max supported size
  • # : 2MB
  • payload: String!
  • }