2021-09-02 19:05:13 -07:00
|
|
|
query appConfig {
|
|
|
|
appConfig {
|
2022-01-11 15:00:57 -08:00
|
|
|
appVersion
|
2021-09-02 19:05:13 -07:00
|
|
|
policiesConfig {
|
|
|
|
enabled
|
|
|
|
platformPrivileges {
|
|
|
|
type
|
|
|
|
displayName
|
|
|
|
description
|
|
|
|
}
|
|
|
|
resourcePrivileges {
|
|
|
|
resourceType
|
|
|
|
resourceTypeDisplayName
|
|
|
|
entityType
|
|
|
|
privileges {
|
|
|
|
type
|
|
|
|
displayName
|
|
|
|
description
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
analyticsConfig {
|
|
|
|
enabled
|
|
|
|
}
|
2022-04-22 12:09:05 -07:00
|
|
|
authConfig {
|
|
|
|
tokenAuthEnabled
|
|
|
|
}
|
2021-10-07 16:14:35 -07:00
|
|
|
identityManagementConfig {
|
|
|
|
enabled
|
|
|
|
}
|
2022-03-04 16:10:25 -08:00
|
|
|
lineageConfig {
|
|
|
|
supportsImpactAnalysis
|
|
|
|
}
|
2022-01-27 10:33:12 -08:00
|
|
|
managedIngestionConfig {
|
|
|
|
enabled
|
|
|
|
}
|
2022-04-15 09:37:08 -07:00
|
|
|
visualConfig {
|
|
|
|
logoUrl
|
2022-09-01 17:06:30 -07:00
|
|
|
faviconUrl
|
2023-01-06 10:54:45 -08:00
|
|
|
queriesTab {
|
|
|
|
queriesTabResultSize
|
|
|
|
}
|
2022-04-15 09:37:08 -07:00
|
|
|
}
|
2022-04-29 17:37:19 -04:00
|
|
|
telemetryConfig {
|
|
|
|
enableThirdPartyLogging
|
|
|
|
}
|
2022-05-26 12:29:20 -07:00
|
|
|
testsConfig {
|
|
|
|
enabled
|
|
|
|
}
|
2022-12-12 12:30:09 -08:00
|
|
|
viewsConfig {
|
|
|
|
enabled
|
|
|
|
}
|
2021-09-02 19:05:13 -07:00
|
|
|
}
|
|
|
|
}
|
2021-10-19 22:20:31 -07:00
|
|
|
|
|
|
|
query getEntityCounts($input: EntityCountInput) {
|
|
|
|
getEntityCounts(input: $input) {
|
|
|
|
counts {
|
|
|
|
entityType
|
|
|
|
count
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-12 12:30:09 -08:00
|
|
|
|
|
|
|
query getGlobalViewsSettings {
|
|
|
|
globalViewsSettings {
|
|
|
|
defaultView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation updateGlobalViewsSettings($input: UpdateGlobalViewsSettingsInput!) {
|
|
|
|
updateGlobalViewsSettings(input: $input)
|
|
|
|
}
|