OBJECT

Deployment

link GraphQL Schema definition

  • type Deployment implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • nodeId: ID!
  • id: UUID!
  • serverId: UUID!
  • name: String!
  • image: String!
  • dockerOptions: String
  • status: DeploymentStatus!
  • createdAt: Datetime
  • foodModelId: UUID
  • faceModelId: UUID
  • # Reads a single `Server` that is related to this `Deployment`.
  • serverByServerId: Server
  • # Reads a single `Model` that is related to this `Deployment`.
  • modelByFoodModelId: Model
  • # Reads a single `Model` that is related to this `Deployment`.
  • modelByFaceModelId: Model
  • }