mirror of
https://github.com/datarhei/core.git
synced 2025-12-24 13:07:56 +08:00
22 lines
309 B
GraphQL
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!
|
|
}
|