Chris Collins 85fa5a1c4f
feat(ui/java) Update domains to be nested (#8841)
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.
2023-09-18 16:14:33 -04:00

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)
}