You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1016 B

  1. # ===============================================
  2. # SYSTEM
  3. # ===============================================
  4. extend type Query {
  5. system: SystemQuery
  6. }
  7. extend type Mutation {
  8. system: SystemMutation
  9. }
  10. # -----------------------------------------------
  11. # QUERIES
  12. # -----------------------------------------------
  13. type SystemQuery {
  14. info: SystemInfo
  15. }
  16. # -----------------------------------------------
  17. # MUTATIONS
  18. # -----------------------------------------------
  19. type SystemMutation {
  20. todo: String
  21. }
  22. # -----------------------------------------------
  23. # TYPES
  24. # -----------------------------------------------
  25. type SystemInfo {
  26. configFile: String
  27. cpuCores: Int
  28. currentVersion: String
  29. dbHost: String
  30. dbType: String
  31. dbVersion: String
  32. hostname: String
  33. latestVersion: String
  34. latestVersionReleaseDate: Date
  35. nodeVersion: String
  36. operatingSystem: String
  37. ramTotal: String
  38. redisHost: String
  39. redisTotalRAM: String
  40. redisUsedRAM: String
  41. redisVersion: String
  42. workingDirectory: String
  43. }