OBJECT

ServerAction

link GraphQL Schema definition

  • type ServerAction implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • nodeId: ID!
  • id: UUID!
  • deviceId: UUID!
  • type: ActionType!
  • status: ActionStatus!
  • input: String
  • options: JSON
  • output: String
  • createdAt: Datetime
  • lastModifiedAt: Datetime
  • lastModifiedBy: String
  • # Reads a single `Server` that is related to this `ServerAction`.
  • serverByDeviceId: Server
  • }