Files
core/http/graph/about.graphqls
Jan Stabenow 9c0b535199 Add v16.7.2
2022-05-13 19:26:45 +02:00

22 lines
309 B
GraphQL

extend type Query {
about: About
}
type About {
app: String!
id: ID!
name: String!
created_at: Time!
uptime_seconds: Uint64!
version: AboutVersion!
}
type AboutVersion {
number: String!
repository_commit: String!
repository_branch: String!
build_date: String!
arch: String!
compiler: String!
}