purnimagarg1 6aaaedf43b
feat(summary): add feature flag for asset summary page (#14460)
Co-authored-by: Chris Collins <chriscollins3456@gmail.com>
2025-08-20 17:45:06 -04:00

160 lines
3.8 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
}
theme {
themeId
}
application {
showSidebarSectionWhenEmpty
showApplicationInNavigation
}
}
telemetryConfig {
enableThirdPartyLogging
}
testsConfig {
enabled
}
viewsConfig {
enabled
}
searchBarConfig {
apiVariant
}
homePageConfig {
firstInPersonalSidebar
}
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
showIntroducePage
showIngestionPageRedesign
showLineageExpandMore
showStatsTabRedesign
showHomePageRedesign
showProductUpdates
lineageGraphV3
logicalModelsEnabled
showHomepageUserRole
assetSummaryPageV1
}
chromeExtensionConfig {
enabled
lineageEnabled
}
}
}
query getEntityCounts($input: EntityCountInput) {
getEntityCounts(input: $input) {
counts {
entityType
count
}
}
}
query getGlobalViewsSettings {
globalViewsSettings {
defaultView
}
}
query getDocPropagationSettings {
docPropagationSettings {
docColumnPropagation
}
}
query getHomePageSettings {
globalHomePageSettings {
defaultTemplate {
...PageTemplate
}
}
}
mutation updateGlobalViewsSettings($input: UpdateGlobalViewsSettingsInput!) {
updateGlobalViewsSettings(input: $input)
}
mutation updateDocPropagationSettings($input: UpdateDocPropagationSettingsInput!) {
updateDocPropagationSettings(input: $input)
}
mutation updateApplicationsSettings($input: UpdateApplicationsSettingsInput!) {
updateApplicationsSettings(input: $input)
}