datarhei-dragonfork-core/http/graph/about.graphqls

22 lines
309 B
GraphQL
Raw Normal View History

2022-05-13 13:26:45 -04:00
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!
}