90 lines
1.9 KiB
GraphQL
Raw Normal View History

query appConfig {
appConfig {
appVersion
policiesConfig {
enabled
platformPrivileges {
type
displayName
description
}
resourcePrivileges {
resourceType
resourceTypeDisplayName
entityType
privileges {
type
displayName
description
}
}
}
analyticsConfig {
enabled
}
authConfig {
tokenAuthEnabled
}
identityManagementConfig {
enabled
}
lineageConfig {
supportsImpactAnalysis
}
managedIngestionConfig {
enabled
}
visualConfig {
logoUrl
2022-09-01 17:06:30 -07:00
faviconUrl
queriesTab {
queriesTabResultSize
}
entityProfiles {
domain {
defaultTab
}
}
searchResult {
enableNameHighlight
}
}
telemetryConfig {
enableThirdPartyLogging
}
testsConfig {
enabled
}
viewsConfig {
enabled
}
featureFlags {
readOnlyModeEnabled
showSearchFiltersV2
showBrowseV2
showAcrylInfo
showAccessManagement
nestedDomainsEnabled
}
}
}
query getEntityCounts($input: EntityCountInput) {
getEntityCounts(input: $input) {
counts {
entityType
count
}
}
}
query getGlobalViewsSettings {
globalViewsSettings {
defaultView
}
}
mutation updateGlobalViewsSettings($input: UpdateGlobalViewsSettingsInput!) {
updateGlobalViewsSettings(input: $input)
}