12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # ===============================================
- # SYSTEM
- # ===============================================
- extend type Query {
- system: SystemQuery
- }
- extend type Mutation {
- system: SystemMutation
- }
- # -----------------------------------------------
- # QUERIES
- # -----------------------------------------------
- type SystemQuery {
- info: SystemInfo
- }
- # -----------------------------------------------
- # MUTATIONS
- # -----------------------------------------------
- type SystemMutation {
- todo: String
- }
- # -----------------------------------------------
- # TYPES
- # -----------------------------------------------
- type SystemInfo {
- currentVersion: String
- latestVersion: String
- latestVersionReleaseDate: Date
- operatingSystem: String
- hostname: String
- cpuCores: Int
- ramTotal: String
- workingDirectory: String
- nodeVersion: String
- redisVersion: String
- redisUsedRAM: String
- redisTotalRAM: String
- redisHost: String
- postgreVersion: String
- postgreHost: String
- }
|