mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00

Allow the ability to now nest domains underneath other domains. This should work much like the business glossary where you can add domains underneath other domains, move domains underneath other domains or at the root, and navigate domains using a nice new navigator.
90 lines
1.9 KiB
GraphQL
90 lines
1.9 KiB
GraphQL
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
|
|
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)
|
|
}
|