workingGroups.graphql 303 B

1234567891011121314151617
  1. enum WorkerType {
  2. GATEWAY
  3. STORAGE
  4. }
  5. type Worker @entity {
  6. "Unique identifier"
  7. id: ID!
  8. "Sign of worker still being active"
  9. isActive: Boolean!
  10. "Runtime identifier"
  11. workerId: String!
  12. "Associated working group"
  13. type: WorkerType!
  14. "Custom metadata set by provider"
  15. metadata: String
  16. }