feat: expose version with healthcheck query

This commit is contained in:
Ali BARIN
2022-07-27 15:15:39 +02:00
parent 5271af8b94
commit e7c734c55e
4 changed files with 15 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ type Query {
): ExecutionStepConnection
getData(stepId: String!, key: String!, parameters: JSONObject): JSONObject
getCurrentUser: User
healthcheck: AppHealth
}
type Mutation {
@@ -424,6 +425,10 @@ type ExecutionStepConnection {
pageInfo: PageInfo
}
type AppHealth {
version: String
}
schema {
query: Query
mutation: Mutation