mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 01:50:06 +00:00
48 lines
989 B
GraphQL
48 lines
989 B
GraphQL
query appConfig {
|
|
appConfig {
|
|
appVersion
|
|
policiesConfig {
|
|
enabled
|
|
platformPrivileges {
|
|
type
|
|
displayName
|
|
description
|
|
}
|
|
resourcePrivileges {
|
|
resourceType
|
|
resourceTypeDisplayName
|
|
entityType
|
|
privileges {
|
|
type
|
|
displayName
|
|
description
|
|
}
|
|
}
|
|
}
|
|
analyticsConfig {
|
|
enabled
|
|
}
|
|
identityManagementConfig {
|
|
enabled
|
|
}
|
|
lineageConfig {
|
|
supportsImpactAnalysis
|
|
}
|
|
managedIngestionConfig {
|
|
enabled
|
|
}
|
|
visualConfig {
|
|
logoUrl
|
|
}
|
|
}
|
|
}
|
|
|
|
query getEntityCounts($input: EntityCountInput) {
|
|
getEntityCounts(input: $input) {
|
|
counts {
|
|
entityType
|
|
count
|
|
}
|
|
}
|
|
}
|