Rocket

Definition

type Rocket {
  active: Boolean
  boosters: Int
  company: String
  cost_per_launch: Int
  country: String
  description: String
  diameter: Distance
  engines: RocketEngines
  first_flight: Date
  first_stage: RocketFirstStage
  height: Distance
  id: ID
  landing_legs: RocketLandingLegs
  mass: Mass
  name: String
  payload_weights: [RocketPayloadWeight]
  second_stage: RocketSecondStage
  stages: Int
  success_rate_pct: Int
  type: String
  wikipedia: String
}

Fields

active

boosters

Int

company

cost_per_launch

Int

country

description

diameter

engines

first_flight

first_stage

height

id

ID

landing_legs

mass

name

payload_weights

second_stage

stages

Int

success_rate_pct

Int

type

wikipedia

Example

Rocket.json
{
  "active": true,
  "boosters": 12345,
  "company": "Some string",
  "cost_per_launch": 12345,
  "country": "Some string",
  "description": "Some string",
  "diameter": Distance,
  "engines": RocketEngines,
  "first_flight": "01-01-1970",
  "first_stage": RocketFirstStage,
  "height": Distance,
  "id": "ac23e983-c67e-442c-9570-c3f2d40e5bf3",
  "landing_legs": RocketLandingLegs,
  "mass": Mass,
  "name": "Some string",
  "payload_weights": [RocketPayloadWeight],
  "second_stage": RocketSecondStage,
  "stages": 12345,
  "success_rate_pct": 12345,
  "type": "Some string",
  "wikipedia": "Some string"
}