mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 18:10:11 +00:00
74 lines
1.5 KiB
GraphQL
74 lines
1.5 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
|
|
}
|
|
}
|
|
telemetryConfig {
|
|
enableThirdPartyLogging
|
|
}
|
|
testsConfig {
|
|
enabled
|
|
}
|
|
viewsConfig {
|
|
enabled
|
|
}
|
|
}
|
|
}
|
|
|
|
query getEntityCounts($input: EntityCountInput) {
|
|
getEntityCounts(input: $input) {
|
|
counts {
|
|
entityType
|
|
count
|
|
}
|
|
}
|
|
}
|
|
|
|
query getGlobalViewsSettings {
|
|
globalViewsSettings {
|
|
defaultView
|
|
}
|
|
}
|
|
|
|
mutation updateGlobalViewsSettings($input: UpdateGlobalViewsSettingsInput!) {
|
|
updateGlobalViewsSettings(input: $input)
|
|
}
|