123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # ===============================================
- # 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: Int
- workingDirectory: String
- nodeVersion: String
- redisVersion: String
- postgreVersion: String
- }
|