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
|
|
|
|
}
|
2023-07-11 10:30:47 -04:00
|
|
|
entityProfiles {
|
|
|
|
domain {
|
|
|
|
defaultTab
|
|
|
|
}
|
|
|
|
}
|
2023-08-24 10:12:26 -07:00
|
|
|
searchResult {
|
|
|
|
enableNameHighlight
|
|
|
|
}
|
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
|
|
|
|
}
|
2023-05-23 15:29:02 -04:00
|
|
|
featureFlags {
|
|
|
|
readOnlyModeEnabled
|
2023-06-21 04:10:07 -04:00
|
|
|
showSearchFiltersV2
|
|
|
|
showBrowseV2
|
2023-06-29 17:13:50 -04:00
|
|
|
showAcrylInfo
|
2024-03-20 19:56:25 +05:30
|
|
|
erModelRelationshipFeatureEnabled
|
2023-09-08 23:10:49 +05:30
|
|
|
showAccessManagement
|
2023-09-18 16:14:33 -04:00
|
|
|
nestedDomainsEnabled
|
2023-12-18 18:35:02 -08:00
|
|
|
platformBrowseV2
|
2024-04-16 04:49:21 +05:30
|
|
|
businessAttributeEntityEnabled
|
2024-06-19 20:14:02 +05:30
|
|
|
dataContractsEnabled
|
2024-08-09 11:02:17 -05:00
|
|
|
editableDatasetNameEnabled
|
2024-07-19 13:41:18 -04:00
|
|
|
showSeparateSiblings
|
2023-05-23 15:29:02 -04:00
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-30 18:50:19 -04:00
|
|
|
query getDocPropagationSettings {
|
|
|
|
docPropagationSettings {
|
|
|
|
docColumnPropagation
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-12 12:30:09 -08:00
|
|
|
mutation updateGlobalViewsSettings($input: UpdateGlobalViewsSettingsInput!) {
|
|
|
|
updateGlobalViewsSettings(input: $input)
|
|
|
|
}
|
2024-07-30 18:50:19 -04:00
|
|
|
|
|
|
|
mutation updateDocPropagationSettings($input: UpdateDocPropagationSettingsInput!) {
|
|
|
|
updateDocPropagationSettings(input: $input)
|
|
|
|
}
|