mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-28 11:59:54 +00:00

Co-authored-by: Raj Tekal <rtekal@gmail.com> Co-authored-by: Raj Tekal <rtekal@users.noreply.github.com> Co-authored-by: Raj Tekal <varadaraj_tekal@optum.com> Co-authored-by: Chris Collins <chriscollins3456@gmail.com>
92 lines
2.0 KiB
GraphQL
92 lines
2.0 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
|
|
erModelRelationshipFeatureEnabled
|
|
showAccessManagement
|
|
nestedDomainsEnabled
|
|
platformBrowseV2
|
|
}
|
|
}
|
|
}
|
|
|
|
query getEntityCounts($input: EntityCountInput) {
|
|
getEntityCounts(input: $input) {
|
|
counts {
|
|
entityType
|
|
count
|
|
}
|
|
}
|
|
}
|
|
|
|
query getGlobalViewsSettings {
|
|
globalViewsSettings {
|
|
defaultView
|
|
}
|
|
}
|
|
|
|
mutation updateGlobalViewsSettings($input: UpdateGlobalViewsSettingsInput!) {
|
|
updateGlobalViewsSettings(input: $input)
|
|
}
|