John Joyce 00edc4205f
feat(Tags): Support Managing Tags via "Manage Tags" nav bar page (V1) (#12983)
Co-authored-by: Annadoesdesign <annaerocca@gmail.com>
Co-authored-by: Anna Everhart <149417426+annadoesdesign@users.noreply.github.com>
Co-authored-by: John Joyce <john@ip-192-168-1-64.us-west-2.compute.internal>
Co-authored-by: John Joyce <john@Mac.lan>
Co-authored-by: amit-apptware <132869468+amit-apptware@users.noreply.github.com>
Co-authored-by: John Joyce <john@Mac-302.lan>
2025-03-31 15:30:51 -07:00

125 lines
2.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
showFullTitleInLineage
queriesTab {
queriesTabResultSize
}
entityProfiles {
domain {
defaultTab
}
}
searchResult {
enableNameHighlight
}
}
telemetryConfig {
enableThirdPartyLogging
}
testsConfig {
enabled
}
viewsConfig {
enabled
}
featureFlags {
readOnlyModeEnabled
showSearchFiltersV2
showBrowseV2
showAcrylInfo
erModelRelationshipFeatureEnabled
showAccessManagement
nestedDomainsEnabled
platformBrowseV2
businessAttributeEntityEnabled
dataContractsEnabled
editableDatasetNameEnabled
themeV2Enabled
themeV2Default
themeV2Toggleable
lineageGraphV2
showSeparateSiblings
showManageStructuredProperties
schemaFieldCLLEnabled
hideDbtSourceInLineage
schemaFieldLineageIgnoreStatus
showNavBarRedesign
showAutoCompleteResults
entityVersioningEnabled
showHasSiblingsFilter
showSearchBarAutocompleteRedesign
showManageTags
}
chromeExtensionConfig {
enabled
lineageEnabled
}
}
}
query getEntityCounts($input: EntityCountInput) {
getEntityCounts(input: $input) {
counts {
entityType
count
}
}
}
query getGlobalViewsSettings {
globalViewsSettings {
defaultView
}
}
query getDocPropagationSettings {
docPropagationSettings {
docColumnPropagation
}
}
mutation updateGlobalViewsSettings($input: UpdateGlobalViewsSettingsInput!) {
updateGlobalViewsSettings(input: $input)
}
mutation updateDocPropagationSettings($input: UpdateDocPropagationSettingsInput!) {
updateDocPropagationSettings(input: $input)
}