Dexter Lee 2b54475c16
feat(api): Add git-based server version to the UI and config endpoint (#3866)
Co-authored-by: Shirshanka Das <shirshanka@apache.org>
2022-01-11 15:00:57 -08:00

39 lines
804 B
GraphQL

query appConfig {
appConfig {
appVersion
policiesConfig {
enabled
platformPrivileges {
type
displayName
description
}
resourcePrivileges {
resourceType
resourceTypeDisplayName
entityType
privileges {
type
displayName
description
}
}
}
analyticsConfig {
enabled
}
identityManagementConfig {
enabled
}
}
}
query getEntityCounts($input: EntityCountInput) {
getEntityCounts(input: $input) {
counts {
entityType
count
}
}
}