Capsule

Definition

type Capsule {
  dragon: Dragon @deprecated(reason: "This is not available in the REST API after MongoDB has been deprecated")
  id: ID
  landings: Int
  missions: [CapsuleMission]
  original_launch: Date
  reuse_count: Int
  status: String
  type: String
}

Fields

id

ID

landings

Int

missions

original_launch

reuse_count

Int

status

type

dragon

This is not available in the REST API after MongoDB has been deprecated

Example

Capsule.json
{
  "dragon": Dragon,
  "id": "ac23e983-c67e-442c-9570-c3f2d40e5bf3",
  "landings": 12345,
  "missions": [CapsuleMission],
  "original_launch": "01-01-1970",
  "reuse_count": 12345,
  "status": "Some string",
  "type": "Some string"
}