CreateDashletInput
Provides the fields and values to use when creating a dashlet.
input CreateDashletInput {
dashboardId: ID!
viewId: ID!
type: DashletType!
key: String!
title: String
properties: JSON
}
Fields
CreateDashletInput.dashboardId
● ID!
non-null scalar
The dashboard's unique identifier.
CreateDashletInput.viewId
● ID!
non-null scalar
The saved view's unique identifier.
CreateDashletInput.type
● DashletType!
non-null enum
The dashlet's type.
CreateDashletInput.key
● String!
non-null scalar
The dashlet's key.
CreateDashletInput.title
● String
scalar
The dashlet's title.
CreateDashletInput.properties
● JSON
scalar
The dashlet's properties.
Member Of
createDashlet
mutation