INPUT_OBJECT

DeploymentCondition

A condition to be used against Deployment object types. All fields are tested for equality and combined with a logical ‘and.’

link GraphQL Schema definition

  • input DeploymentCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `serverId` field.
  • serverId: UUID
  • # Checks for equality with the object’s `name` field.
  • name: String
  • # Checks for equality with the object’s `image` field.
  • image: String
  • # Checks for equality with the object’s `dockerOptions` field.
  • dockerOptions: String
  • # Checks for equality with the object’s `status` field.
  • status: DeploymentStatus
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: Datetime
  • # Checks for equality with the object’s `foodModelId` field.
  • foodModelId: UUID
  • # Checks for equality with the object’s `faceModelId` field.
  • faceModelId: UUID
  • }