Launchpad

Definition

type Launchpad {
  attempted_launches: Int
  details: String
  id: ID
  location: Location
  name: String
  status: String
  successful_launches: Int
  vehicles_launched: [Rocket]
  wikipedia: String
}

Fields

attempted_launches

Int

details

id

ID

location

name

status

successful_launches

Int

vehicles_launched

[Rocket]

wikipedia

Example

Launchpad.json
{
  "attempted_launches": 12345,
  "details": "Some string",
  "id": "ac23e983-c67e-442c-9570-c3f2d40e5bf3",
  "location": Location,
  "name": "Some string",
  "status": "Some string",
  "successful_launches": 12345,
  "vehicles_launched": [Rocket],
  "wikipedia": "Some string"
}