Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

GetDashboardsScope

Allow to refine selection of the results using multiple scopes. Note: all scopes are additive

input GetDashboardsScope {
folderPath: String
ids: [String!]
isDeprecated: Boolean
isVerified: Boolean
nameContains: String
sourceId: String
withDeleted: Boolean
}

Fields

GetDashboardsScope.folderPath ● String scalar general

Scope by the dashboard folder path, start from the root folder

GetDashboardsScope.ids ● [String!] list scalar general

Scope by multiple dashboard IDs

GetDashboardsScope.isDeprecated ● Boolean scalar general

Scope by whether the dashboard is deprecated

GetDashboardsScope.isVerified ● Boolean scalar general

Scope by whether the dashboard is verified (certified)

GetDashboardsScope.nameContains ● String scalar general

Scope by a substring of the dashboard name, case insensitive

GetDashboardsScope.sourceId ● String scalar general

Scope by source ID

GetDashboardsScope.withDeleted ● Boolean scalar general

Scope by withDeleted, whether to include deleted assets

Example

{
"folderPath": "product/sales",
"ids": [
"fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
],
"isDeprecated": true,
"isVerified": true,
"nameContains": "sales",
"sourceId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"withDeleted": false
}

Member Of