vscode-apollo 2.5.6 → 2.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. package/.circleci/config.yml +17 -0
  2. package/.github/workflows/E2E.yml +3 -2
  3. package/.github/workflows/build-prs.yml +2 -1
  4. package/.prettierignore +3 -0
  5. package/.semgrepignore +2 -0
  6. package/.vscode/settings.json +7 -2
  7. package/CHANGELOG.md +6 -0
  8. package/apollo.connectors.mapping.configuration.json +10 -0
  9. package/package.json +37 -3
  10. package/sampleWorkspace/connectors-community/.github/ISSUE_TEMPLATE/connector-bug-report.md +36 -0
  11. package/sampleWorkspace/connectors-community/.github/ISSUE_TEMPLATE/new-connector.md +10 -0
  12. package/sampleWorkspace/connectors-community/.github/renovate.json5 +3 -0
  13. package/sampleWorkspace/connectors-community/.vscode/extensions.json +3 -0
  14. package/sampleWorkspace/connectors-community/.vscode/settings.json +13 -0
  15. package/sampleWorkspace/connectors-community/.vscode/tasks.json +10 -0
  16. package/sampleWorkspace/connectors-community/README.md +108 -0
  17. package/sampleWorkspace/connectors-community/apollo.config.json +5 -0
  18. package/sampleWorkspace/connectors-community/connectors/.template/Dockerfile +5 -0
  19. package/sampleWorkspace/connectors-community/connectors/.template/README +46 -0
  20. package/sampleWorkspace/connectors-community/connectors/.template/connector.graphql +31 -0
  21. package/sampleWorkspace/connectors-community/connectors/.template/router.yaml +18 -0
  22. package/sampleWorkspace/connectors-community/connectors/.template/supergraph.yaml +6 -0
  23. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/README +12 -0
  24. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/albums.graphql +48 -0
  25. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/comments.graphql +54 -0
  26. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/photos.graphql +54 -0
  27. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/posts.graphql +51 -0
  28. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/supergraph.yaml +26 -0
  29. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/todos.graphql +51 -0
  30. package/sampleWorkspace/connectors-community/connectors/JSONPlaceholder/users.graphql +80 -0
  31. package/sampleWorkspace/connectors-community/connectors/TM-Forum/README.md +9 -0
  32. package/sampleWorkspace/connectors-community/connectors/TM-Forum/router.yaml +18 -0
  33. package/sampleWorkspace/connectors-community/connectors/TM-Forum/supergraph.yaml +6 -0
  34. package/sampleWorkspace/connectors-community/connectors/TM-Forum/tmf622-ProductOrdering.graphql +296 -0
  35. package/sampleWorkspace/connectors-community/connectors/adobe-commerce-cloud/README.md +7 -0
  36. package/sampleWorkspace/connectors-community/connectors/adobe-commerce-cloud/addresses.graphql +30 -0
  37. package/sampleWorkspace/connectors-community/connectors/adobe-commerce-cloud/customer.graphql +77 -0
  38. package/sampleWorkspace/connectors-community/connectors/adobe-commerce-cloud/products.graphql +70 -0
  39. package/sampleWorkspace/connectors-community/connectors/adobe-commerce-cloud/router.yaml +24 -0
  40. package/sampleWorkspace/connectors-community/connectors/adobe-commerce-cloud/supergraph.yaml +14 -0
  41. package/sampleWorkspace/connectors-community/connectors/adobe-commerce-cloud/swagger.json +69226 -0
  42. package/sampleWorkspace/connectors-community/connectors/anthropic/Dockerfile +5 -0
  43. package/sampleWorkspace/connectors-community/connectors/anthropic/README +61 -0
  44. package/sampleWorkspace/connectors-community/connectors/anthropic/messages.graphql +258 -0
  45. package/sampleWorkspace/connectors-community/connectors/anthropic/router.yaml +18 -0
  46. package/sampleWorkspace/connectors-community/connectors/anthropic/supergraph.yaml +6 -0
  47. package/sampleWorkspace/connectors-community/connectors/apollo-ecomm-simple/README +3 -0
  48. package/sampleWorkspace/connectors-community/connectors/apollo-ecomm-simple/connector.graphql +38 -0
  49. package/sampleWorkspace/connectors-community/connectors/apollo-ecomm-simple/router.yaml +18 -0
  50. package/sampleWorkspace/connectors-community/connectors/apollo-ecomm-simple/supergraph.yaml +6 -0
  51. package/sampleWorkspace/connectors-community/connectors/apple/README +36 -0
  52. package/sampleWorkspace/connectors-community/connectors/apple/app-store-connect.graphql +100 -0
  53. package/sampleWorkspace/connectors-community/connectors/apple/router.yaml +18 -0
  54. package/sampleWorkspace/connectors-community/connectors/apple/supergraph.yaml +6 -0
  55. package/sampleWorkspace/connectors-community/connectors/aws/README +125 -0
  56. package/sampleWorkspace/connectors-community/connectors/aws/dynamodb.graphql +130 -0
  57. package/sampleWorkspace/connectors-community/connectors/aws/json-responses/product-price.json +10 -0
  58. package/sampleWorkspace/connectors-community/connectors/aws/json-responses/products.json +53 -0
  59. package/sampleWorkspace/connectors-community/connectors/aws/lambda.graphql +179 -0
  60. package/sampleWorkspace/connectors-community/connectors/aws/router.yaml +54 -0
  61. package/sampleWorkspace/connectors-community/connectors/aws/supergraph.yaml +10 -0
  62. package/sampleWorkspace/connectors-community/connectors/bored/README.md +35 -0
  63. package/sampleWorkspace/connectors-community/connectors/bored/bored.graphql +87 -0
  64. package/sampleWorkspace/connectors-community/connectors/bored/supergraph.yaml +6 -0
  65. package/sampleWorkspace/connectors-community/connectors/common-room/README.md +23 -0
  66. package/sampleWorkspace/connectors-community/connectors/common-room/contacts.graphql +141 -0
  67. package/sampleWorkspace/connectors-community/connectors/common-room/json-responses/members_email_.json +61 -0
  68. package/sampleWorkspace/connectors-community/connectors/common-room/router.yaml +18 -0
  69. package/sampleWorkspace/connectors-community/connectors/common-room/supergraph.yaml +6 -0
  70. package/sampleWorkspace/connectors-community/connectors/googlemaps/README.md +58 -0
  71. package/sampleWorkspace/connectors-community/connectors/googlemaps/distancematrix.graphql +155 -0
  72. package/sampleWorkspace/connectors-community/connectors/googlemaps/places-legacy.graphql +117 -0
  73. package/sampleWorkspace/connectors-community/connectors/googlemaps/places.graphql +399 -0
  74. package/sampleWorkspace/connectors-community/connectors/googlemaps/router.yaml +18 -0
  75. package/sampleWorkspace/connectors-community/connectors/googlemaps/supergraph.yaml +18 -0
  76. package/sampleWorkspace/connectors-community/connectors/googlemaps/timezone.graphql +64 -0
  77. package/sampleWorkspace/connectors-community/connectors/heygen/README +105 -0
  78. package/sampleWorkspace/connectors-community/connectors/heygen/avatars.graphql +79 -0
  79. package/sampleWorkspace/connectors-community/connectors/heygen/photo-avatars.graphql +454 -0
  80. package/sampleWorkspace/connectors-community/connectors/heygen/router.yaml +21 -0
  81. package/sampleWorkspace/connectors-community/connectors/heygen/supergraph.yaml +10 -0
  82. package/sampleWorkspace/connectors-community/connectors/jira/README +36 -0
  83. package/sampleWorkspace/connectors-community/connectors/jira/connector.graphql +197 -0
  84. package/sampleWorkspace/connectors-community/connectors/jira/router.yaml +18 -0
  85. package/sampleWorkspace/connectors-community/connectors/jira/supergraph.yaml +6 -0
  86. package/sampleWorkspace/connectors-community/connectors/museums/README.md +40 -0
  87. package/sampleWorkspace/connectors-community/connectors/museums/chicagoArt.graphql +150 -0
  88. package/sampleWorkspace/connectors-community/connectors/museums/met.graphql +119 -0
  89. package/sampleWorkspace/connectors-community/connectors/museums/supergraph.yaml +10 -0
  90. package/sampleWorkspace/connectors-community/connectors/nws/README.md +45 -0
  91. package/sampleWorkspace/connectors-community/connectors/nws/alerts.graphql +598 -0
  92. package/sampleWorkspace/connectors-community/connectors/nws/supergraph.yaml +6 -0
  93. package/sampleWorkspace/connectors-community/connectors/odata/README +18 -0
  94. package/sampleWorkspace/connectors-community/connectors/odata/connector.graphql +171 -0
  95. package/sampleWorkspace/connectors-community/connectors/odata/router.yaml +18 -0
  96. package/sampleWorkspace/connectors-community/connectors/odata/supergraph.yaml +6 -0
  97. package/sampleWorkspace/connectors-community/connectors/openai/README.md +61 -0
  98. package/sampleWorkspace/connectors-community/connectors/openai/assistants.graphql +285 -0
  99. package/sampleWorkspace/connectors-community/connectors/openai/chat-completions.graphql +169 -0
  100. package/sampleWorkspace/connectors-community/connectors/openai/models.graphql +47 -0
  101. package/sampleWorkspace/connectors-community/connectors/openai/router.yaml +24 -0
  102. package/sampleWorkspace/connectors-community/connectors/openai/supergraph.yaml +14 -0
  103. package/sampleWorkspace/connectors-community/connectors/pokeapi/README +45 -0
  104. package/sampleWorkspace/connectors-community/connectors/pokeapi/games.graphql +70 -0
  105. package/sampleWorkspace/connectors-community/connectors/pokeapi/locations.graphql +127 -0
  106. package/sampleWorkspace/connectors-community/connectors/pokeapi/moves.graphql +107 -0
  107. package/sampleWorkspace/connectors-community/connectors/pokeapi/pokemon.graphql +539 -0
  108. package/sampleWorkspace/connectors-community/connectors/pokeapi/router.yaml +18 -0
  109. package/sampleWorkspace/connectors-community/connectors/pokeapi/supergraph.yaml +18 -0
  110. package/sampleWorkspace/connectors-community/connectors/strapi/README.md +75 -0
  111. package/sampleWorkspace/connectors-community/connectors/strapi/router.yaml +19 -0
  112. package/sampleWorkspace/connectors-community/connectors/strapi/supergraph.yaml +6 -0
  113. package/sampleWorkspace/connectors-community/connectors/strapi/users.graphql +227 -0
  114. package/sampleWorkspace/connectors-community/connectors/stripe/README.md +83 -0
  115. package/sampleWorkspace/connectors-community/connectors/stripe/checkout.graphql +112 -0
  116. package/sampleWorkspace/connectors-community/connectors/stripe/core-resources.graphql +868 -0
  117. package/sampleWorkspace/connectors-community/connectors/stripe/payment-methods.graphql +526 -0
  118. package/sampleWorkspace/connectors-community/connectors/stripe/products.graphql +162 -0
  119. package/sampleWorkspace/connectors-community/connectors/stripe/router.yaml +26 -0
  120. package/sampleWorkspace/connectors-community/connectors/stripe/supergraph.yaml +18 -0
  121. package/sampleWorkspace/connectors-community/connectors/supabase/README.md +80 -0
  122. package/sampleWorkspace/connectors-community/connectors/supabase/router.yaml +5 -0
  123. package/sampleWorkspace/connectors-community/connectors/supabase/supabase.graphql +143 -0
  124. package/sampleWorkspace/connectors-community/connectors/supabase/supergraph.yaml +6 -0
  125. package/sampleWorkspace/connectors-community/connectors/thespacedevs/README +46 -0
  126. package/sampleWorkspace/connectors-community/connectors/thespacedevs/agencies.graphql +193 -0
  127. package/sampleWorkspace/connectors-community/connectors/thespacedevs/api-throttle.graphql +33 -0
  128. package/sampleWorkspace/connectors-community/connectors/thespacedevs/astronauts.graphql +237 -0
  129. package/sampleWorkspace/connectors-community/connectors/thespacedevs/celestial-bodies.graphql +131 -0
  130. package/sampleWorkspace/connectors-community/connectors/thespacedevs/docking-events.graphql +3460 -0
  131. package/sampleWorkspace/connectors-community/connectors/thespacedevs/launches.graphql +1156 -0
  132. package/sampleWorkspace/connectors-community/connectors/thespacedevs/supergraph.yaml +77 -0
  133. package/sampleWorkspace/connectors-community/connectors/tint/README +35 -0
  134. package/sampleWorkspace/connectors-community/connectors/tint/accounts.graphql +69 -0
  135. package/sampleWorkspace/connectors-community/connectors/tint/router.yaml +21 -0
  136. package/sampleWorkspace/connectors-community/connectors/tint/social-feeds.graphql +62 -0
  137. package/sampleWorkspace/connectors-community/connectors/tint/supergraph.yaml +10 -0
  138. package/sampleWorkspace/connectors-community/connectors/todoist/README.md +48 -0
  139. package/sampleWorkspace/connectors-community/connectors/todoist/supergraph.yaml +6 -0
  140. package/sampleWorkspace/connectors-community/connectors/todoist/todoist.graphql +381 -0
  141. package/sampleWorkspace/connectors-community/connectors/trimblemaps/README +99 -0
  142. package/sampleWorkspace/connectors-community/connectors/trimblemaps/connector.graphql +66 -0
  143. package/sampleWorkspace/connectors-community/connectors/trimblemaps/router.yaml +18 -0
  144. package/sampleWorkspace/connectors-community/connectors/trimblemaps/supergraph.yaml +6 -0
  145. package/sampleWorkspace/connectors-community/connectors/twilio/README.md +44 -0
  146. package/sampleWorkspace/connectors-community/connectors/twilio/messages.graphql +107 -0
  147. package/sampleWorkspace/connectors-community/connectors/twilio/router.yaml +6 -0
  148. package/sampleWorkspace/connectors-community/connectors/twilio/supergraph.yaml +6 -0
  149. package/sampleWorkspace/connectors-community/connectors/usgs/earthquakes/README.md +44 -0
  150. package/sampleWorkspace/connectors-community/connectors/usgs/earthquakes/earthquakes.graphql +235 -0
  151. package/sampleWorkspace/connectors-community/connectors/usgs/earthquakes/supergraph.yaml +6 -0
  152. package/sampleWorkspace/connectors-community/connectors/usgs/earthquakes-nominatum/README.md +44 -0
  153. package/sampleWorkspace/connectors-community/connectors/usgs/earthquakes-nominatum/earthquake-simple.graphql +87 -0
  154. package/sampleWorkspace/connectors-community/connectors/usgs/earthquakes-nominatum/router.yaml +3 -0
  155. package/sampleWorkspace/connectors-community/connectors/usgs/earthquakes-nominatum/supergraph.yaml +6 -0
  156. package/sampleWorkspace/connectors-community/connectors/usps/README +36 -0
  157. package/sampleWorkspace/connectors-community/connectors/usps/router.yaml +18 -0
  158. package/sampleWorkspace/connectors-community/connectors/usps/supergraph.yaml +6 -0
  159. package/sampleWorkspace/connectors-community/connectors/usps/tracking.graphql +118 -0
  160. package/sampleWorkspace/connectors-community/connectors/zendesk/README +36 -0
  161. package/sampleWorkspace/connectors-community/connectors/zendesk/connector.graphql +98 -0
  162. package/sampleWorkspace/connectors-community/connectors/zendesk/router.yaml +18 -0
  163. package/sampleWorkspace/connectors-community/connectors/zendesk/supergraph.yaml +6 -0
  164. package/sampleWorkspace/connectors-community/file-new/index.js +520 -0
  165. package/sampleWorkspace/connectors-community/package-lock.json +119 -0
  166. package/sampleWorkspace/connectors-community/package.json +20 -0
  167. package/sampleWorkspace/connectors-community/supergraph.yaml +6 -0
  168. package/sampleWorkspace/sampleWorkspace.code-workspace +29 -8
  169. package/src/__tests__/fixtures/textmate/test.apollo.connectors.mapping +213 -0
  170. package/src/__tests__/fixtures/textmate/test.connect.graphql +104 -0
  171. package/src/language-server/__tests__/fixtures/documents/functionCall.ts.snap +3 -3
  172. package/syntaxes/build.ts +266 -0
  173. package/syntaxes/connectors.mapping.json +532 -0
  174. package/syntaxes/connectors.mapping.yaml +440 -0
  175. package/syntaxes/graphql.connectors.json +426 -0
  176. package/syntaxes/graphql.connectors.yaml +254 -0
  177. package/syntaxes/graphql.json +8 -1
  178. package/syntaxes/tsconfig.json +6 -0
@@ -0,0 +1,3460 @@
1
+ extend schema
2
+ @link(
3
+ url: "https://specs.apollo.dev/federation/v2.10"
4
+ import: ["@key", "@requires", "@shareable"]
5
+ )
6
+ @link(
7
+ url: "https://specs.apollo.dev/connect/v0.2"
8
+ import: ["@source", "@connect"]
9
+ )
10
+ @source(name: "llv2", http: { baseURL: "https://ll.thespacedevs.com/2.3.0/" })
11
+
12
+ type DockingEvent @key(fields: "id") {
13
+ id: ID!
14
+ docking: String @shareable
15
+ departure: String @shareable
16
+ dockingLocation: DockingLocation @shareable
17
+ spaceStationTarget: SpaceStationTarget @shareable
18
+ flightVehicleTarget: FlightVehicleTarget @shareable
19
+ payloadFlightTarget: PayloadFlightTarget @shareable
20
+ flightVehicleChaser: FlightVehicleChaser @shareable
21
+ spaceStationChaser: SpaceStationChaser @shareable
22
+ payloadFlightChaser: PayloadFlightChaser @shareable
23
+ }
24
+ type Landing @shareable {
25
+ id: ID!
26
+ type: LandingType
27
+ attempt: Boolean
28
+ success: Boolean
29
+ description: String
30
+ downrangeDistance: String
31
+ landingLocation: LandingLocation
32
+ }
33
+ type LandingType{
34
+ id: ID!
35
+ name: String
36
+ abbrev: String
37
+ description: String
38
+ }
39
+ type LandingLocation {
40
+ id: ID!
41
+ name: String
42
+ active: Boolean
43
+ abbrev: String
44
+ description: String
45
+ location: Location
46
+ longitude: String
47
+ latitude: String
48
+ image: Image
49
+ landings: SuccessCount
50
+ celestialBody: CelestialBody
51
+ }
52
+ type SuccessCount @shareable {
53
+ total: Int
54
+ successful: Int
55
+ failed: Int
56
+ }
57
+ type Location @shareable {
58
+ id: ID!
59
+ name: String
60
+ active: Boolean
61
+ country: Country
62
+ image: Image
63
+ mapImage: String
64
+ longitude: String
65
+ latitude: String
66
+ totalLaunchCount: Int
67
+ totalLandingCount: Int
68
+ description: String
69
+ timezone: String
70
+ }
71
+ type DockingLocation @shareable {
72
+ id: ID!
73
+ name: String
74
+ spacestation: SpaceStation @shareable
75
+ spacecraft: Spacecraft @shareable
76
+ payload: Payload @shareable
77
+ }
78
+ type SpaceStation @shareable {
79
+ id: ID!
80
+ name: String
81
+ image: Image @shareable
82
+ }
83
+ type SpaceStationTarget @shareable {
84
+ id: ID!
85
+ name: String
86
+ image: Image @shareable
87
+ }
88
+ type FlightVehicleTarget @shareable {
89
+ id: ID!
90
+ destination: String
91
+ missionEnd: String
92
+ spacecraft: Spacecraft @shareable
93
+ }
94
+ type PayloadFlightTarget @shareable {
95
+ id: ID!
96
+ destination: String
97
+ amount: String
98
+ payload: Payload @shareable
99
+ launch: Launch @shareable
100
+ landing: Landing @shareable
101
+ }
102
+ type FlightVehicleChaser @shareable {
103
+ id: ID!
104
+ destination: String
105
+ missionEnd: String
106
+ spacecraft: Spacecraft
107
+ launch: Launch
108
+ landing: Landing
109
+ }
110
+ type SpaceStationChaser @shareable {
111
+ id: ID!
112
+ name: String
113
+ image: Image @shareable
114
+ status: String
115
+ founded: String
116
+ deorbited: String
117
+ description: String
118
+ orbit: String
119
+ type: String
120
+ }
121
+ type PayloadFlightChaser @shareable {
122
+ id: ID!
123
+ url: String
124
+ destination: String
125
+ amount: String
126
+ payload: Payload
127
+ launch: Launch
128
+ landing: Landing
129
+ }
130
+ type Agency @key(fields: "id", resolvable: false) {
131
+ id: ID!
132
+ name: String @shareable
133
+ abbrev: String @shareable
134
+ type: String @shareable
135
+ featured: Boolean @shareable
136
+ country: [Country] @shareable
137
+ description: String @shareable
138
+ administrator: String @shareable
139
+ foundingYear: Int @shareable
140
+ spacecraft: String @shareable
141
+ image: Image @shareable
142
+ logo: Image @shareable
143
+ socialLogo: Image @shareable
144
+ totalLaunchCount: Int
145
+ consecutiveSuccessfulLaunches: Int
146
+ successfulLaunches: Int
147
+ failedLaunches: Int
148
+ pendingLaunches: Int
149
+ consecutiveSuccessfulLandings: Int
150
+ successfulLandings: Int
151
+ failedLandings: Int
152
+ attemptedLandings: Int
153
+ successfulLandingsSpacecraft: Int
154
+ failedLandingsSpacecraft: Int
155
+ attemptedLandingsSpacecraft: Int
156
+ successfulLandingsPayload: Int
157
+ failedLandingsPayload: Int
158
+ attemptedLandingsPayload: Int
159
+ infoUrl: String
160
+ wikiUrl: String
161
+ socialMediaLinks: [SocialMediaLink]
162
+ }
163
+ type SocialMediaLink @shareable {
164
+ id: ID!
165
+ url: String
166
+ socialMedia: SocialMedia
167
+ }
168
+ type SocialMedia @shareable {
169
+ id: ID!
170
+ name: String
171
+ url: String
172
+ logo: Image
173
+ }
174
+ type Country @shareable {
175
+ id: ID!
176
+ name: String
177
+ alpha2Code: String
178
+ alpha3Code: String
179
+ nationalityName: String
180
+ nationalityNameComposed: String
181
+ }
182
+ type Spacecraft @shareable {
183
+ id: ID!
184
+ name: String
185
+ type: String
186
+ agency: Agency
187
+ family: SpacecraftFamily
188
+ inUse: Boolean
189
+ serialNumber: String
190
+ isPlaceholder: Boolean
191
+ image: Image @shareable
192
+ inSpace: Boolean
193
+ timeInSpace: String
194
+ timeDocked: String
195
+ flightsCount: Int
196
+ missionEndsCount: Int
197
+ status: String @shareable
198
+ description: String @shareable
199
+ spacecraftConfig: SpacecraftConfig @shareable
200
+ fastestTurnaround: String
201
+ }
202
+ type SpacecraftConfig @shareable {
203
+ id: ID!
204
+ name: String
205
+ type: String
206
+ agency: Agency @shareable
207
+ family: SpacecraftFamily @shareable
208
+ inUse: Boolean
209
+ image: Image @shareable
210
+ }
211
+ type SpacecraftFamily @shareable {
212
+ id: ID!
213
+ name: String
214
+ description: String
215
+ manufacturer: Manufacturer @shareable
216
+ maidenFlight: String
217
+ }
218
+ type Manufacturer @shareable {
219
+ id: ID!
220
+ name: String
221
+ abbrev: String
222
+ type: String
223
+ featured: Boolean
224
+ country: Country
225
+ description: String
226
+ administrator: String
227
+ foundingYear: Int
228
+ spacecraft: String
229
+ image: Image
230
+ logo: Image
231
+ socialLogo: Image
232
+ }
233
+ type Payload @shareable {
234
+ id: ID!
235
+ name: String
236
+ type: String
237
+ manufacturer: Manufacturer
238
+ operator: Agency
239
+ image: Image
240
+ wikiLink: String
241
+ infoLink: String
242
+ program: Program
243
+ cost: Float
244
+ mass: Float
245
+ description: String
246
+ }
247
+ type Launch @key(fields: "id", resolvable: false) @shareable{
248
+ id: ID!
249
+ name: String
250
+ launchDesignator: String
251
+ status: LaunchStatus
252
+ lastUpdated: String
253
+ net: String
254
+ netPrecision: String
255
+ window: LaunchWindow
256
+ image: Image
257
+ infographic: String
258
+ probability: Float
259
+ weatherConcerns: String
260
+ failreason: String
261
+ hashtag: String
262
+ provider: Agency
263
+ rocket: Rocket
264
+ mission: Mission
265
+ pad: Pad
266
+ webcastLive: Boolean
267
+ program: Program
268
+ orbitalLaunchAttemps: Int
269
+ locationLaunchAttemps: Int
270
+ padLaunchAttemps: Int
271
+ agencyLaunchAttemps: Int
272
+ orbitalLaunchAttempsYear: Int
273
+ locationLaunchAttempsYear: Int
274
+ padLaunchAttempsYear: Int
275
+ agencyLaunchAttempsYear: Int
276
+ }
277
+ type Program @shareable{
278
+ id: ID!
279
+ name: String
280
+ image: Image
281
+ infoUrl: String
282
+ wikiUrl: String
283
+ description: String
284
+ agencies: [Agency]
285
+ startDate: String
286
+ endDate: String
287
+ missionPatches: [MissionPatch]
288
+ }
289
+ type MissionPatch @shareable {
290
+ id: ID!
291
+ name: String
292
+ priority: Int
293
+ imageUrl: String
294
+ agency: Agency
295
+ }
296
+ type Pad @shareable{
297
+ id: ID!
298
+ active: Boolean
299
+ agencies: [Agency]
300
+ name: String
301
+ image: Image
302
+ description: String
303
+ infoUrl: String
304
+ wikiUrl: String
305
+ mapUrl: String
306
+ latitude: Float
307
+ longitude: Float
308
+ country: Country
309
+ mapImage: String
310
+ launchTotalCount: Int
311
+ orbitalLaunchAttemptCount: Int
312
+ fastestTurnaround: String
313
+ location: Location
314
+ }
315
+ type LaunchStatus @shareable {
316
+ id: ID!
317
+ name: String
318
+ abbrev: String
319
+ description: String
320
+ }
321
+ type LaunchWindow @shareable{
322
+ start: String
323
+ end: String
324
+ }
325
+ type Image @shareable {
326
+ id: ID!
327
+ name: String
328
+ url: String
329
+ thumbnail: String
330
+ credit: String
331
+ singleUse: Boolean
332
+ license: ImageLicense @shareable
333
+ }
334
+ type ImageLicense @shareable {
335
+ name: String
336
+ link: String
337
+ }
338
+ type Rocket @shareable {
339
+ id: ID!
340
+ configuration: RocketLaunchConfigurations
341
+ }
342
+ type RocketLaunchConfigurations @shareable{
343
+ id: ID!
344
+ name: String
345
+ fullName: String
346
+ variant: String
347
+ families: [RocketFamily]
348
+ }
349
+ type Mission @shareable {
350
+ id: ID!
351
+ name: String
352
+ type: String
353
+ description: String
354
+ image: Image
355
+ orbit: Orbit
356
+ agencies: [Agency]
357
+ infoUrls: [InfoUrl]
358
+ vidUrls: [VideoUrl]
359
+ }
360
+ type Orbit @shareable {
361
+ id: ID!
362
+ name: String
363
+ abbrev: String
364
+ celestialBody: CelestialBody
365
+ }
366
+ type CelestialBody @key(fields:"id", resolvable: false) {
367
+ id: ID!
368
+ name: String @shareable
369
+ type: CelestialType @shareable
370
+ diameter: Float @shareable
371
+ mass: Float @shareable
372
+ gravity: Float @shareable
373
+ lengthOfDay: String @shareable
374
+ atmosphere: Boolean @shareable
375
+ image: Image @shareable
376
+ description: String @shareable
377
+ wikiUrl: String @shareable
378
+ }
379
+ type CelestialType @shareable {
380
+ id: ID!
381
+ name: String
382
+ }
383
+ type RocketFamily @shareable{
384
+ id: ID!
385
+ name: String
386
+ }
387
+ type InfoUrl @shareable {
388
+ priority: Int
389
+ source: String
390
+ title: String
391
+ description: String
392
+ featureImage: String
393
+ url: String
394
+ type: String
395
+ language: Language
396
+ }
397
+ type Language @shareable {
398
+ id: ID!
399
+ name: String
400
+ code: String
401
+ }
402
+ type VideoUrl @shareable{
403
+ priority: Int
404
+ source: String
405
+ publisher: String
406
+ title: String
407
+ description: String
408
+ featureImage: String
409
+ url: String
410
+ type: String
411
+ language: Language
412
+ startTime: String
413
+ endTime: String
414
+ live: Boolean
415
+ }
416
+ type DockingEventConnection {
417
+ pageInfo: PageInfo
418
+ results: [DockingEvent]
419
+ }
420
+ type PageInfo @shareable {
421
+ count: Int
422
+ next: String
423
+ previous: String
424
+ }
425
+ type Query {
426
+ dockingEvent(id: ID!): DockingEvent
427
+ @connect(
428
+ source: "llv2"
429
+ entity: true
430
+ http: { GET: "/docking_events/{$args.id}/?format=json" }
431
+ selection: """
432
+ id
433
+ docking
434
+ departure
435
+ dockingLocation: docking_location {
436
+ id
437
+ name
438
+ spacestation {
439
+ id
440
+ name
441
+ image {
442
+ id
443
+ name
444
+ url: image_url
445
+ thumbnail: thumbnail_url
446
+ credit
447
+ license {
448
+ name
449
+ link
450
+ }
451
+ singleUse: single_use
452
+ }
453
+ }
454
+ spacecraft {
455
+ id
456
+ name
457
+ type: type.name
458
+ agency {
459
+ id
460
+ name
461
+ abbrev
462
+ type: type.name
463
+ }
464
+ family {
465
+ id
466
+ name
467
+ description
468
+ manufacturer {
469
+ id
470
+ name
471
+ abbrev
472
+ type: type.name
473
+ }
474
+ maidenFlight: maiden_flight
475
+ }
476
+ inUse: in_use
477
+ image {
478
+ id
479
+ name
480
+ url: image_url
481
+ thumbnail: thumbnail_url
482
+ credit
483
+ license {
484
+ name
485
+ link
486
+ }
487
+ singleUse: single_use
488
+ }
489
+ }
490
+ payload {
491
+ id
492
+ name
493
+ type: type.name
494
+ manufacturer {
495
+ id
496
+ name
497
+ abbrev
498
+ type: type.name
499
+ }
500
+ operator {
501
+ id
502
+ name
503
+ abbrev
504
+ type: type.name
505
+ }
506
+ image {
507
+ id
508
+ name
509
+ url: image_url
510
+ thumbnail: thumbnail_url
511
+ credit
512
+ license {
513
+ name
514
+ link
515
+ }
516
+ singleUse: single_use
517
+ }
518
+ }
519
+ }
520
+ spaceStationTarget: space_station_target {
521
+ id
522
+ name
523
+ image {
524
+ id
525
+ name
526
+ url: image_url
527
+ thumbnail: thumbnail_url
528
+ credit
529
+ license {
530
+ name
531
+ link
532
+ }
533
+ singleUse: single_use
534
+ }
535
+ }
536
+ flightVehicleTarget: flight_vehicle_target {
537
+ id
538
+ destination
539
+ missionEnd: mission_end
540
+ spacecraft {
541
+ id
542
+ name
543
+ serialNumber: serial_number
544
+ isPlaceholder: is_placeholder
545
+ image {
546
+ id
547
+ name
548
+ url: image_url
549
+ thumbnail: thumbnail_url
550
+ credit
551
+ license {
552
+ name
553
+ link
554
+ }
555
+ singleUse: single_use
556
+ }
557
+ inSpace: in_space
558
+ timeInSpace: time_in_space
559
+ timeDocked: time_docked
560
+ flightsCount: flights_count
561
+ missionEndsCount: mission_ends_count
562
+ status: status.name
563
+ description
564
+ spacecraftConfig: spacecraft_config {
565
+ id
566
+ name
567
+ type: type.name
568
+ agency {
569
+ id
570
+ name
571
+ abbrev
572
+ type: type.name
573
+ }
574
+ family {
575
+ id
576
+ name
577
+ description
578
+ manufacturer {
579
+ id
580
+ name
581
+ abbrev
582
+ type: type.name
583
+ }
584
+ maidenFlight: maiden_flight
585
+ }
586
+ inUse: in_use
587
+ image {
588
+ id
589
+ name
590
+ url: image_url
591
+ thumbnail: thumbnail_url
592
+ credit
593
+ license {
594
+ name
595
+ link
596
+ }
597
+ singleUse: single_use
598
+ }
599
+ }
600
+ fastestTurnaround: fastest_turnaround
601
+ }
602
+ }
603
+ payloadFlightTarget: payload_flight_target {
604
+ id
605
+ destination
606
+ amount
607
+ payload {
608
+ id
609
+ name
610
+ type: type.name
611
+ manufacturer {
612
+ id
613
+ name
614
+ abbrev
615
+ type: type.name
616
+ }
617
+ operator {
618
+ id
619
+ name
620
+ abbrev
621
+ type: type.name
622
+ }
623
+ image {
624
+ id
625
+ name
626
+ url: image_url
627
+ thumbnail: thumbnail_url
628
+ credit
629
+ license {
630
+ name
631
+ link
632
+ }
633
+ singleUse: single_use
634
+ }
635
+ }
636
+ launch {
637
+ id
638
+ name
639
+ }
640
+ landing {
641
+ id
642
+ attempt
643
+ success
644
+ description
645
+ downrangeDistance: downrange_distance
646
+ landingLocation: landing_location {
647
+ id
648
+ name
649
+ active
650
+ abbrev
651
+ description
652
+ location {
653
+ id
654
+ name
655
+ description
656
+ active
657
+ country {
658
+ id
659
+ name
660
+ alpha2Code: alpha_2_code
661
+ alpha3Code: alpha_3_code
662
+ nationalityName: nationality_name
663
+ nationalityNameComposed: nationality_name_composed
664
+ }
665
+ image {
666
+ id
667
+ name
668
+ url: image_url
669
+ thumbnail: thumbnail_url
670
+ credit
671
+ license {
672
+ name
673
+ link
674
+ }
675
+ singleUse: single_use
676
+ }
677
+ mapImage: map_image
678
+ longitude
679
+ latitude
680
+ timezone: timezone_name
681
+ totalLaunchCount: total_launch_count
682
+ totalLandingCount: total_landing_count
683
+ }
684
+ longitude
685
+ latitude
686
+ image {
687
+ id
688
+ name
689
+ url: image_url
690
+ thumbnail: thumbnail_url
691
+ credit
692
+ license {
693
+ name
694
+ link
695
+ }
696
+ singleUse: single_use
697
+ }
698
+ landings: {
699
+ total: attempted_landings
700
+ successful: successful_landings
701
+ failed: failed_landings
702
+ }
703
+ celestialBody: $.celestial_body {
704
+ id
705
+ name
706
+ type {
707
+ id
708
+ name
709
+ }
710
+ diameter
711
+ mass
712
+ gravity
713
+ lengthOfDay: length_of_day
714
+ atmosphere
715
+ image {
716
+ id
717
+ name
718
+ url: image_url
719
+ thumbnail: thumbnail_url
720
+ credit
721
+ license {
722
+ name
723
+ link
724
+ }
725
+ singleUse: single_use
726
+ }
727
+ description
728
+ wikiUrl: wiki_url
729
+ }
730
+ }
731
+ type {
732
+ id
733
+ name
734
+ abbrev
735
+ description
736
+ }
737
+ }
738
+ }
739
+ flightVehicleChaser: flight_vehicle_chaser {
740
+ id
741
+ destination
742
+ missionEnd: mission_end
743
+ spacecraft {
744
+ id
745
+ name
746
+ serialNumber: serial_number
747
+ isPlaceholder: is_placeholder
748
+ image {
749
+ id
750
+ name
751
+ url: image_url
752
+ thumbnail: thumbnail_url
753
+ credit
754
+ license {
755
+ name
756
+ link
757
+ }
758
+ singleUse: single_use
759
+ }
760
+ inSpace: in_space
761
+ timeInSpace: time_in_space
762
+ timeDocked: time_docked
763
+ flightsCount: flights_count
764
+ missionEndsCount: mission_ends_count
765
+ status: status.name
766
+ description
767
+ spacecraftConfig: spacecraft_config {
768
+ id
769
+ name
770
+ type: type.name
771
+ agency {
772
+ id
773
+ name
774
+ abbrev
775
+ type: type.name
776
+ }
777
+ family {
778
+ id
779
+ name
780
+ description
781
+ manufacturer {
782
+ id
783
+ name
784
+ abbrev
785
+ type: type.name
786
+ }
787
+ maidenFlight: maiden_flight
788
+ }
789
+ inUse: in_use
790
+ image {
791
+ id
792
+ name
793
+ url: image_url
794
+ thumbnail: thumbnail_url
795
+ credit
796
+ license {
797
+ name
798
+ link
799
+ }
800
+ singleUse: single_use
801
+ }
802
+ }
803
+ fastestTurnaround: fastest_turnaround
804
+ }
805
+ launch {
806
+ id
807
+ name
808
+ launchDesignator: launch_designator
809
+ status {
810
+ id
811
+ name
812
+ abbrev
813
+ description
814
+ }
815
+ lastUpdated: last_updated
816
+ net
817
+ netPrecision: net_precision
818
+ window: {
819
+ start: window_start
820
+ end: window_end
821
+ }
822
+ image {
823
+ id
824
+ name
825
+ url: image_url
826
+ thumbnail: thumbnail_url
827
+ credit
828
+ license {
829
+ name
830
+ link
831
+ }
832
+ singleUse: single_use
833
+ }
834
+ infographic
835
+ probability
836
+ weatherConcerns: weather_concerns
837
+ failreason
838
+ hashtag
839
+ provider: $.launch_service_provider {
840
+ id
841
+ name
842
+ abbrev
843
+ type: $.type.name
844
+ }
845
+ rocket {
846
+ id
847
+ configuration {
848
+ id
849
+ name
850
+ fullName: full_name
851
+ variant
852
+ families {
853
+ id
854
+ name
855
+ }
856
+ }
857
+ }
858
+ mission {
859
+ id
860
+ name
861
+ type
862
+ description
863
+ image {
864
+ id
865
+ name
866
+ url: image_url
867
+ thumbnail: thumbnail_url
868
+ credit
869
+ license {
870
+ name
871
+ link
872
+ }
873
+ singleUse: single_use
874
+ }
875
+ orbit {
876
+ id
877
+ name
878
+ abbrev
879
+ celestialBody: $.celestial_body {
880
+ id
881
+ name
882
+ }
883
+ }
884
+ agencies {
885
+ id
886
+ name
887
+ abbrev
888
+ type: type.name
889
+ featured
890
+ country {
891
+ id
892
+ name
893
+ alpha2Code: alpha_2_code
894
+ alpha3Code: alpha_3_code
895
+ nationalityName: nationality_name
896
+ nationalityNameComposed: nationality_name_composed
897
+ }
898
+ description
899
+ administrator
900
+ foundingYear: founding_year
901
+ spacecraft
902
+ image {
903
+ id
904
+ name
905
+ url: image_url
906
+ thumbnail: thumbnail_url
907
+ credit
908
+ license {
909
+ name
910
+ link
911
+ }
912
+ singleUse: single_use
913
+ }
914
+ logo {
915
+ id
916
+ name
917
+ url: image_url
918
+ thumbnail: thumbnail_url
919
+ credit
920
+ license {
921
+ name
922
+ link
923
+ }
924
+ singleUse: single_use
925
+ }
926
+ socialLogo: social_logo {
927
+ id
928
+ name
929
+ url: image_url
930
+ thumbnail: thumbnail_url
931
+ credit
932
+ license {
933
+ name
934
+ link
935
+ }
936
+ singleUse: single_use
937
+ }
938
+ totalLaunchCount: total_launch_count
939
+ consecutiveSuccessfulLaunches: consecutive_successful_launches
940
+ successfulLaunches: successful_launches
941
+ failedLaunches: failed_launches
942
+ pendingLaunches: pending_launches
943
+ consecutiveSuccessfulLandings: consecutive_successful_landings
944
+ successfulLandings: successful_landings
945
+ failedLandings: failed_landings
946
+ attemptedLandings: attempted_landings
947
+ successfulLandingsSpacecraft: successful_landings_spacecraft
948
+ failedLandingsSpacecraft: failed_landings_spacecraft
949
+ attemptedLandingsSpacecraft: attempted_landings_spacecraft
950
+ successfulLandingsPayload: successful_landings_payload
951
+ failedLandingsPayload: failed_landings_payload
952
+ attemptedLandingsPayload: attempted_landings_payload
953
+ infoUrl: info_url
954
+ wikiUrl: wiki_url
955
+ socialMediaLinks: social_media_links {
956
+ id
957
+ url
958
+ socialMedia: social_media {
959
+ id
960
+ name
961
+ url
962
+ logo {
963
+ id
964
+ name
965
+ url: image_url
966
+ thumbnail: thumbnail_url
967
+ credit
968
+ license {
969
+ name
970
+ link
971
+ }
972
+ singleUse: single_use
973
+ }
974
+ }
975
+ }
976
+ }
977
+
978
+ infoUrls: info_urls {
979
+ priority
980
+ source
981
+ title
982
+ description
983
+ featureImage: feature_image
984
+ url
985
+ type: type.name
986
+ language {
987
+ id
988
+ name
989
+ code
990
+ }
991
+ }
992
+ vidUrls: vid_urls {
993
+ priority
994
+ source
995
+ publisher
996
+ title
997
+ description
998
+ featureImage: feature_image
999
+ url
1000
+ type: type.name
1001
+ language {
1002
+ id
1003
+ name
1004
+ code
1005
+ }
1006
+ startTime: start_time
1007
+ endTime: end_time
1008
+ live
1009
+ }
1010
+ }
1011
+ pad {
1012
+ id
1013
+ active
1014
+ agencies {
1015
+ id
1016
+ name
1017
+ abbrev
1018
+ type: type.name
1019
+ featured
1020
+ country {
1021
+ id
1022
+ name
1023
+ alpha2Code: alpha_2_code
1024
+ alpha3Code: alpha_3_code
1025
+ nationalityName: nationality_name
1026
+ nationalityNameComposed: nationality_name_composed
1027
+ }
1028
+ description
1029
+ administrator
1030
+ foundingYear: founding_year
1031
+ spacecraft
1032
+ image {
1033
+ id
1034
+ name
1035
+ url: image_url
1036
+ thumbnail: thumbnail_url
1037
+ credit
1038
+ license {
1039
+ name
1040
+ link
1041
+ }
1042
+ singleUse: single_use
1043
+ }
1044
+ logo {
1045
+ id
1046
+ name
1047
+ url: image_url
1048
+ thumbnail: thumbnail_url
1049
+ credit
1050
+ license {
1051
+ name
1052
+ link
1053
+ }
1054
+ singleUse: single_use
1055
+ }
1056
+ socialLogo: social_logo {
1057
+ id
1058
+ name
1059
+ url: image_url
1060
+ thumbnail: thumbnail_url
1061
+ credit
1062
+ license {
1063
+ name
1064
+ link
1065
+ }
1066
+ singleUse: single_use
1067
+ }
1068
+ }
1069
+ name
1070
+ image {
1071
+ id
1072
+ name
1073
+ url: image_url
1074
+ thumbnail: thumbnail_url
1075
+ credit
1076
+ license {
1077
+ name
1078
+ link
1079
+ }
1080
+ singleUse: single_use
1081
+ }
1082
+ description
1083
+ infoUrl: info_url
1084
+ wikiUrl: wiki_url
1085
+ mapUrl: map_url
1086
+ latitude
1087
+ longitude
1088
+ country {
1089
+ id
1090
+ name
1091
+ alpha2Code: alpha_2_code
1092
+ alpha3Code: alpha_3_code
1093
+ nationalityName: nationality_name
1094
+ nationalityNameComposed: nationality_name_composed
1095
+ }
1096
+ mapImage: map_image
1097
+ launchTotalCount: total_launch_count
1098
+ orbitalLaunchAttemptCount: orbital_launch_attempt_count
1099
+ fastestTurnaround: fastest_turnaround
1100
+ location {
1101
+ id
1102
+ name
1103
+ active
1104
+ country {
1105
+ id
1106
+ name
1107
+ alpha2Code: alpha_2_code
1108
+ alpha3Code: alpha_3_code
1109
+ nationalityName: nationality_name
1110
+ nationalityNameComposed: nationality_name_composed
1111
+ }
1112
+ description
1113
+ image {
1114
+ id
1115
+ name
1116
+ url: image_url
1117
+ thumbnail: thumbnail_url
1118
+ credit
1119
+ license {
1120
+ name
1121
+ link
1122
+ }
1123
+ singleUse: single_use
1124
+ }
1125
+ mapImage: map_image
1126
+ longitude
1127
+ latitude
1128
+ timezone: timezone_name
1129
+ totalLaunchCount: total_launch_count
1130
+ totalLandingCount: total_landing_count
1131
+ }
1132
+ }
1133
+ webcastLive: webcast_live
1134
+ program {
1135
+ id
1136
+ name
1137
+ image {
1138
+ id
1139
+ name
1140
+ url: image_url
1141
+ thumbnail: thumbnail_url
1142
+ credit
1143
+ license {
1144
+ name
1145
+ link
1146
+ }
1147
+ singleUse: single_use
1148
+ }
1149
+ infoUrl: info_url
1150
+ wikiUrl: wiki_url
1151
+ description
1152
+ agencies {
1153
+ id
1154
+ name
1155
+ abbrev
1156
+ type: type.name
1157
+ }
1158
+ startDate: start_date
1159
+ endDate: end_date
1160
+ missionPatches: mission_patches {
1161
+ id
1162
+ name
1163
+ priority
1164
+ imageUrl: image_url
1165
+ agency {
1166
+ id
1167
+ name
1168
+ abbrev
1169
+ type: type.name
1170
+ }
1171
+ }
1172
+ }
1173
+ orbitalLaunchAttemps: orbital_launch_attempt_count
1174
+ locationLaunchAttemps: location_launch_attempt_count
1175
+ padLaunchAttemps: pad_launch_attempt_count
1176
+ agencyLaunchAttemps: agency_launch_attempt_count
1177
+ orbitalLaunchAttempsYear: orbital_launch_attempt_count_year
1178
+ locationLaunchAttempsYear: location_launch_attempt_count_year
1179
+ padLaunchAttempsYear: pad_launch_attempt_count_year
1180
+ agencyLaunchAttempsYear: agency_launch_attempt_count_year
1181
+ }
1182
+ landing {
1183
+ id
1184
+ attempt
1185
+ success
1186
+ description
1187
+ downrangeDistance: downrange_distance
1188
+ landingLocation: landing_location {
1189
+ id
1190
+ name
1191
+ active
1192
+ abbrev
1193
+ description
1194
+ location {
1195
+ id
1196
+ name
1197
+ description
1198
+ active
1199
+ country {
1200
+ id
1201
+ name
1202
+ alpha2Code: alpha_2_code
1203
+ alpha3Code: alpha_3_code
1204
+ nationalityName: nationality_name
1205
+ nationalityNameComposed: nationality_name_composed
1206
+ }
1207
+ image {
1208
+ id
1209
+ name
1210
+ url: image_url
1211
+ thumbnail: thumbnail_url
1212
+ credit
1213
+ license {
1214
+ name
1215
+ link
1216
+ }
1217
+ singleUse: single_use
1218
+ }
1219
+ mapImage: map_image
1220
+ longitude
1221
+ latitude
1222
+ timezone: timezone_name
1223
+ totalLaunchCount: total_launch_count
1224
+ totalLandingCount: total_landing_count
1225
+ }
1226
+ longitude
1227
+ latitude
1228
+ image {
1229
+ id
1230
+ name
1231
+ url: image_url
1232
+ thumbnail: thumbnail_url
1233
+ credit
1234
+ license {
1235
+ name
1236
+ link
1237
+ }
1238
+ singleUse: single_use
1239
+ }
1240
+ landings: {
1241
+ total: attempted_landings
1242
+ successful: successful_landings
1243
+ failed: failed_landings
1244
+ }
1245
+ celestialBody: $.celestial_body {
1246
+ id
1247
+ name
1248
+ type {
1249
+ id
1250
+ name
1251
+ }
1252
+ diameter
1253
+ mass
1254
+ gravity
1255
+ lengthOfDay: length_of_day
1256
+ atmosphere
1257
+ image {
1258
+ id
1259
+ name
1260
+ url: image_url
1261
+ thumbnail: thumbnail_url
1262
+ credit
1263
+ license {
1264
+ name
1265
+ link
1266
+ }
1267
+ singleUse: single_use
1268
+ }
1269
+ description
1270
+ wikiUrl: wiki_url
1271
+ }
1272
+ }
1273
+ type {
1274
+ id
1275
+ name
1276
+ abbrev
1277
+ description
1278
+ }
1279
+ }
1280
+ }
1281
+ spaceStationChaser: space_station_chaser {
1282
+ id
1283
+ name
1284
+ image {
1285
+ id
1286
+ name
1287
+ url: image_url
1288
+ thumbnail: thumbnail_url
1289
+ credit
1290
+ license {
1291
+ name
1292
+ link
1293
+ }
1294
+ singleUse: single_use
1295
+ }
1296
+ status: status.name
1297
+ founded
1298
+ deorbited
1299
+ description
1300
+ orbit
1301
+ type: type.name
1302
+ }
1303
+ payloadFlightChaser: payload_flight_chaser {
1304
+ id
1305
+ url
1306
+ destination
1307
+ amount
1308
+ payload {
1309
+ id
1310
+ name
1311
+ type: type.name
1312
+ manufacturer {
1313
+ id
1314
+ name
1315
+ abbrev
1316
+ type: type.name
1317
+ featured
1318
+ country {
1319
+ id
1320
+ name
1321
+ alpha2Code: alpha_2_code
1322
+ alpha3Code: alpha_3_code
1323
+ nationalityName: nationality_name
1324
+ nationalityNameComposed: nationality_name_composed
1325
+ }
1326
+ description
1327
+ administrator
1328
+ foundingYear: founding_year
1329
+ spacecraft
1330
+ image {
1331
+ id
1332
+ name
1333
+ url: image_url
1334
+ thumbnail: thumbnail_url
1335
+ credit
1336
+ license {
1337
+ name
1338
+ link
1339
+ }
1340
+ singleUse: single_use
1341
+ }
1342
+ logo {
1343
+ id
1344
+ name
1345
+ url: image_url
1346
+ thumbnail: thumbnail_url
1347
+ credit
1348
+ license {
1349
+ name
1350
+ link
1351
+ }
1352
+ singleUse: single_use
1353
+ }
1354
+ socialLogo: social_logo {
1355
+ id
1356
+ name
1357
+ url: image_url
1358
+ thumbnail: thumbnail_url
1359
+ credit
1360
+ license {
1361
+ name
1362
+ link
1363
+ }
1364
+ singleUse: single_use
1365
+ }
1366
+ }
1367
+ operator {
1368
+ id
1369
+ name
1370
+ abbrev
1371
+ type: type.name
1372
+ featured
1373
+ country {
1374
+ id
1375
+ name
1376
+ alpha2Code: alpha_2_code
1377
+ alpha3Code: alpha_3_code
1378
+ nationalityName: nationality_name
1379
+ nationalityNameComposed: nationality_name_composed
1380
+ }
1381
+ description
1382
+ administrator
1383
+ foundingYear: founding_year
1384
+ spacecraft
1385
+ image {
1386
+ id
1387
+ name
1388
+ url: image_url
1389
+ thumbnail: thumbnail_url
1390
+ credit
1391
+ license {
1392
+ name
1393
+ link
1394
+ }
1395
+ singleUse: single_use
1396
+ }
1397
+ logo {
1398
+ id
1399
+ name
1400
+ url: image_url
1401
+ thumbnail: thumbnail_url
1402
+ credit
1403
+ license {
1404
+ name
1405
+ link
1406
+ }
1407
+ singleUse: single_use
1408
+ }
1409
+ socialLogo: social_logo {
1410
+ id
1411
+ name
1412
+ url: image_url
1413
+ thumbnail: thumbnail_url
1414
+ credit
1415
+ license {
1416
+ name
1417
+ link
1418
+ }
1419
+ singleUse: single_use
1420
+ }
1421
+ }
1422
+ image {
1423
+ id
1424
+ name
1425
+ url: image_url
1426
+ thumbnail: thumbnail_url
1427
+ credit
1428
+ license {
1429
+ name
1430
+ link
1431
+ }
1432
+ singleUse: single_use
1433
+ }
1434
+ wikiLink: wiki_link
1435
+ infoLink: info_link
1436
+ program {
1437
+ id
1438
+ name
1439
+ image {
1440
+ id
1441
+ name
1442
+ url: image_url
1443
+ thumbnail: thumbnail_url
1444
+ credit
1445
+ license {
1446
+ name
1447
+ link
1448
+ }
1449
+ singleUse: single_use
1450
+ }
1451
+ infoUrl: info_url
1452
+ wikiUrl: wiki_url
1453
+ }
1454
+ cost
1455
+ mass
1456
+ description
1457
+ }
1458
+ launch {
1459
+ id
1460
+ name
1461
+ launchDesignator: launch_designator
1462
+ status {
1463
+ id
1464
+ name
1465
+ abbrev
1466
+ description
1467
+ }
1468
+ lastUpdated: last_updated
1469
+ net
1470
+ netPrecision: net_precision
1471
+ window: {
1472
+ start: window_start
1473
+ end: window_end
1474
+ }
1475
+ image {
1476
+ id
1477
+ name
1478
+ url: image_url
1479
+ thumbnail: thumbnail_url
1480
+ credit
1481
+ license {
1482
+ name
1483
+ link
1484
+ }
1485
+ singleUse: single_use
1486
+ }
1487
+ infographic
1488
+ probability
1489
+ weatherConcerns: weather_concerns
1490
+ failreason
1491
+ hashtag
1492
+ provider: $.launch_service_provider {
1493
+ id
1494
+ name
1495
+ abbrev
1496
+ type: $.type.name
1497
+ }
1498
+ rocket {
1499
+ id
1500
+ configuration {
1501
+ id
1502
+ name
1503
+ fullName: full_name
1504
+ variant
1505
+ families {
1506
+ id
1507
+ name
1508
+ }
1509
+ }
1510
+ }
1511
+ mission {
1512
+ id
1513
+ name
1514
+ type
1515
+ description
1516
+ image {
1517
+ id
1518
+ name
1519
+ url: image_url
1520
+ thumbnail: thumbnail_url
1521
+ credit
1522
+ license {
1523
+ name
1524
+ link
1525
+ }
1526
+ singleUse: single_use
1527
+ }
1528
+ orbit {
1529
+ id
1530
+ name
1531
+ abbrev
1532
+ celestialBody: $.celestial_body {
1533
+ id
1534
+ name
1535
+ }
1536
+ }
1537
+ agencies {
1538
+ id
1539
+ name
1540
+ abbrev
1541
+ type: type.name
1542
+ featured
1543
+ country {
1544
+ id
1545
+ name
1546
+ alpha2Code: alpha_2_code
1547
+ alpha3Code: alpha_3_code
1548
+ nationalityName: nationality_name
1549
+ nationalityNameComposed: nationality_name_composed
1550
+ }
1551
+ description
1552
+ administrator
1553
+ foundingYear: founding_year
1554
+ spacecraft
1555
+ image {
1556
+ id
1557
+ name
1558
+ url: image_url
1559
+ thumbnail: thumbnail_url
1560
+ credit
1561
+ license {
1562
+ name
1563
+ link
1564
+ }
1565
+ singleUse: single_use
1566
+ }
1567
+ logo {
1568
+ id
1569
+ name
1570
+ url: image_url
1571
+ thumbnail: thumbnail_url
1572
+ credit
1573
+ license {
1574
+ name
1575
+ link
1576
+ }
1577
+ singleUse: single_use
1578
+ }
1579
+ socialLogo: social_logo {
1580
+ id
1581
+ name
1582
+ url: image_url
1583
+ thumbnail: thumbnail_url
1584
+ credit
1585
+ license {
1586
+ name
1587
+ link
1588
+ }
1589
+ singleUse: single_use
1590
+ }
1591
+ totalLaunchCount: total_launch_count
1592
+ consecutiveSuccessfulLaunches: consecutive_successful_launches
1593
+ successfulLaunches: successful_launches
1594
+ failedLaunches: failed_launches
1595
+ pendingLaunches: pending_launches
1596
+ consecutiveSuccessfulLandings: consecutive_successful_landings
1597
+ successfulLandings: successful_landings
1598
+ failedLandings: failed_landings
1599
+ attemptedLandings: attempted_landings
1600
+ successfulLandingsSpacecraft: successful_landings_spacecraft
1601
+ failedLandingsSpacecraft: failed_landings_spacecraft
1602
+ attemptedLandingsSpacecraft: attempted_landings_spacecraft
1603
+ successfulLandingsPayload: successful_landings_payload
1604
+ failedLandingsPayload: failed_landings_payload
1605
+ attemptedLandingsPayload: attempted_landings_payload
1606
+ infoUrl: info_url
1607
+ wikiUrl: wiki_url
1608
+ socialMediaLinks: social_media_links {
1609
+ id
1610
+ url
1611
+ socialMedia: social_media {
1612
+ id
1613
+ name
1614
+ url
1615
+ logo {
1616
+ id
1617
+ name
1618
+ url: image_url
1619
+ thumbnail: thumbnail_url
1620
+ credit
1621
+ license {
1622
+ name
1623
+ link
1624
+ }
1625
+ singleUse: single_use
1626
+ }
1627
+ }
1628
+ }
1629
+ }
1630
+
1631
+ infoUrls: info_urls {
1632
+ priority
1633
+ source
1634
+ title
1635
+ description
1636
+ featureImage: feature_image
1637
+ url
1638
+ type: type.name
1639
+ language {
1640
+ id
1641
+ name
1642
+ code
1643
+ }
1644
+ }
1645
+ vidUrls: vid_urls {
1646
+ priority
1647
+ source
1648
+ publisher
1649
+ title
1650
+ description
1651
+ featureImage: feature_image
1652
+ url
1653
+ type: type.name
1654
+ language {
1655
+ id
1656
+ name
1657
+ code
1658
+ }
1659
+ startTime: start_time
1660
+ endTime: end_time
1661
+ live
1662
+ }
1663
+ }
1664
+ pad {
1665
+ id
1666
+ active
1667
+ agencies {
1668
+ id
1669
+ name
1670
+ abbrev
1671
+ type: type.name
1672
+ featured
1673
+ country {
1674
+ id
1675
+ name
1676
+ alpha2Code: alpha_2_code
1677
+ alpha3Code: alpha_3_code
1678
+ nationalityName: nationality_name
1679
+ nationalityNameComposed: nationality_name_composed
1680
+ }
1681
+ description
1682
+ administrator
1683
+ foundingYear: founding_year
1684
+ spacecraft
1685
+ image {
1686
+ id
1687
+ name
1688
+ url: image_url
1689
+ thumbnail: thumbnail_url
1690
+ credit
1691
+ license {
1692
+ name
1693
+ link
1694
+ }
1695
+ singleUse: single_use
1696
+ }
1697
+ logo {
1698
+ id
1699
+ name
1700
+ url: image_url
1701
+ thumbnail: thumbnail_url
1702
+ credit
1703
+ license {
1704
+ name
1705
+ link
1706
+ }
1707
+ singleUse: single_use
1708
+ }
1709
+ socialLogo: social_logo {
1710
+ id
1711
+ name
1712
+ url: image_url
1713
+ thumbnail: thumbnail_url
1714
+ credit
1715
+ license {
1716
+ name
1717
+ link
1718
+ }
1719
+ singleUse: single_use
1720
+ }
1721
+ }
1722
+ name
1723
+ image {
1724
+ id
1725
+ name
1726
+ url: image_url
1727
+ thumbnail: thumbnail_url
1728
+ credit
1729
+ license {
1730
+ name
1731
+ link
1732
+ }
1733
+ singleUse: single_use
1734
+ }
1735
+ description
1736
+ infoUrl: info_url
1737
+ wikiUrl: wiki_url
1738
+ mapUrl: map_url
1739
+ latitude
1740
+ longitude
1741
+ country {
1742
+ id
1743
+ name
1744
+ alpha2Code: alpha_2_code
1745
+ alpha3Code: alpha_3_code
1746
+ nationalityName: nationality_name
1747
+ nationalityNameComposed: nationality_name_composed
1748
+ }
1749
+ mapImage: map_image
1750
+ launchTotalCount: total_launch_count
1751
+ orbitalLaunchAttemptCount: orbital_launch_attempt_count
1752
+ fastestTurnaround: fastest_turnaround
1753
+ location {
1754
+ id
1755
+ name
1756
+ active
1757
+ country {
1758
+ id
1759
+ name
1760
+ alpha2Code: alpha_2_code
1761
+ alpha3Code: alpha_3_code
1762
+ nationalityName: nationality_name
1763
+ nationalityNameComposed: nationality_name_composed
1764
+ }
1765
+ description
1766
+ image {
1767
+ id
1768
+ name
1769
+ url: image_url
1770
+ thumbnail: thumbnail_url
1771
+ credit
1772
+ license {
1773
+ name
1774
+ link
1775
+ }
1776
+ singleUse: single_use
1777
+ }
1778
+ mapImage: map_image
1779
+ longitude
1780
+ latitude
1781
+ timezone: timezone_name
1782
+ totalLaunchCount: total_launch_count
1783
+ totalLandingCount: total_landing_count
1784
+ }
1785
+ }
1786
+ webcastLive: webcast_live
1787
+ program {
1788
+ id
1789
+ name
1790
+ image {
1791
+ id
1792
+ name
1793
+ url: image_url
1794
+ thumbnail: thumbnail_url
1795
+ credit
1796
+ license {
1797
+ name
1798
+ link
1799
+ }
1800
+ singleUse: single_use
1801
+ }
1802
+ infoUrl: info_url
1803
+ wikiUrl: wiki_url
1804
+ description
1805
+ agencies {
1806
+ id
1807
+ name
1808
+ abbrev
1809
+ type: type.name
1810
+ }
1811
+ startDate: start_date
1812
+ endDate: end_date
1813
+ missionPatches: mission_patches {
1814
+ id
1815
+ name
1816
+ priority
1817
+ imageUrl: image_url
1818
+ agency {
1819
+ id
1820
+ name
1821
+ abbrev
1822
+ type: type.name
1823
+ }
1824
+ }
1825
+ }
1826
+ orbitalLaunchAttemps: orbital_launch_attempt_count
1827
+ locationLaunchAttemps: location_launch_attempt_count
1828
+ padLaunchAttemps: pad_launch_attempt_count
1829
+ agencyLaunchAttemps: agency_launch_attempt_count
1830
+ orbitalLaunchAttempsYear: orbital_launch_attempt_count_year
1831
+ locationLaunchAttempsYear: location_launch_attempt_count_year
1832
+ padLaunchAttempsYear: pad_launch_attempt_count_year
1833
+ agencyLaunchAttempsYear: agency_launch_attempt_count_year
1834
+ }
1835
+ landing {
1836
+ id
1837
+ attempt
1838
+ success
1839
+ description
1840
+ downrangeDistance: downrange_distance
1841
+ landingLocation: landing_location {
1842
+ id
1843
+ name
1844
+ active
1845
+ abbrev
1846
+ description
1847
+ location {
1848
+ id
1849
+ name
1850
+ active
1851
+ country {
1852
+ id
1853
+ name
1854
+ alpha2Code: alpha_2_code
1855
+ alpha3Code: alpha_3_code
1856
+ nationalityName: nationality_name
1857
+ nationalityNameComposed: nationality_name_composed
1858
+ }
1859
+ image {
1860
+ id
1861
+ name
1862
+ url: image_url
1863
+ thumbnail: thumbnail_url
1864
+ credit
1865
+ license {
1866
+ name
1867
+ link
1868
+ }
1869
+ singleUse: single_use
1870
+ }
1871
+ mapImage: map_image
1872
+ longitude
1873
+ latitude
1874
+ timezone: timezone_name
1875
+ totalLaunchCount: total_launch_count
1876
+ totalLandingCount: total_landing_count
1877
+ }
1878
+ longitude
1879
+ latitude
1880
+ image {
1881
+ id
1882
+ name
1883
+ url: image_url
1884
+ thumbnail: thumbnail_url
1885
+ credit
1886
+ license {
1887
+ name
1888
+ link
1889
+ }
1890
+ singleUse: single_use
1891
+ }
1892
+ landings: {
1893
+ total: attempted_landings
1894
+ successful: successful_landings
1895
+ failed: failed_landings
1896
+ }
1897
+ celestialBody: $.celestial_body {
1898
+ id
1899
+ name
1900
+ type {
1901
+ id
1902
+ name
1903
+ }
1904
+ diameter
1905
+ mass
1906
+ gravity
1907
+ lengthOfDay: length_of_day
1908
+ atmosphere
1909
+ image {
1910
+ id
1911
+ name
1912
+ url: image_url
1913
+ thumbnail: thumbnail_url
1914
+ credit
1915
+ license {
1916
+ name
1917
+ link
1918
+ }
1919
+ singleUse: single_use
1920
+ }
1921
+ description
1922
+ wikiUrl: wiki_url
1923
+ }
1924
+ }
1925
+ type {
1926
+ id
1927
+ name
1928
+ abbrev
1929
+ description
1930
+ }
1931
+ }
1932
+ }
1933
+ """
1934
+ )
1935
+ dockingEvents(
1936
+ search: String
1937
+ offset: Int = 0
1938
+ limit: Int = 20
1939
+ ): DockingEventConnection
1940
+ @connect(
1941
+ source: "llv2"
1942
+ http: {
1943
+ GET: "/docking_events/"
1944
+ queryParams: """
1945
+ search: $args.filters.search
1946
+ limit: $args.limit
1947
+ offset: $args.offset
1948
+ format: $('json')
1949
+ """
1950
+ }
1951
+ selection: """
1952
+ pageInfo {
1953
+ count
1954
+ next
1955
+ previous
1956
+ }
1957
+ results {
1958
+ id
1959
+ docking
1960
+ departure
1961
+ dockingLocation: docking_location {
1962
+ id
1963
+ name
1964
+ spacestation {
1965
+ id
1966
+ name
1967
+ image {
1968
+ id
1969
+ name
1970
+ url: image_url
1971
+ thumbnail: thumbnail_url
1972
+ credit
1973
+ license {
1974
+ name
1975
+ link
1976
+ }
1977
+ singleUse: single_use
1978
+ }
1979
+ }
1980
+ spacecraft {
1981
+ id
1982
+ name
1983
+ type: type.name
1984
+ agency {
1985
+ id
1986
+ name
1987
+ abbrev
1988
+ type: type.name
1989
+ }
1990
+ family {
1991
+ id
1992
+ name
1993
+ description
1994
+ manufacturer {
1995
+ id
1996
+ name
1997
+ abbrev
1998
+ type: type.name
1999
+ }
2000
+ maidenFlight: maiden_flight
2001
+ }
2002
+ inUse: in_use
2003
+ image {
2004
+ id
2005
+ name
2006
+ url: image_url
2007
+ thumbnail: thumbnail_url
2008
+ credit
2009
+ license {
2010
+ name
2011
+ link
2012
+ }
2013
+ singleUse: single_use
2014
+ }
2015
+ }
2016
+ payload {
2017
+ id
2018
+ name
2019
+ type: type.name
2020
+ manufacturer {
2021
+ id
2022
+ name
2023
+ abbrev
2024
+ type: type.name
2025
+ }
2026
+ operator {
2027
+ id
2028
+ name
2029
+ abbrev
2030
+ type: type.name
2031
+ }
2032
+ image {
2033
+ id
2034
+ name
2035
+ url: image_url
2036
+ thumbnail: thumbnail_url
2037
+ credit
2038
+ license {
2039
+ name
2040
+ link
2041
+ }
2042
+ singleUse: single_use
2043
+ }
2044
+ }
2045
+ }
2046
+ spaceStationTarget: space_station_target {
2047
+ id
2048
+ name
2049
+ image {
2050
+ id
2051
+ name
2052
+ url: image_url
2053
+ thumbnail: thumbnail_url
2054
+ credit
2055
+ license {
2056
+ name
2057
+ link
2058
+ }
2059
+ singleUse: single_use
2060
+ }
2061
+ }
2062
+ flightVehicleTarget: flight_vehicle_target {
2063
+ id
2064
+ destination
2065
+ missionEnd: mission_end
2066
+ spacecraft {
2067
+ id
2068
+ name
2069
+ serialNumber: serial_number
2070
+ isPlaceholder: is_placeholder
2071
+ image {
2072
+ id
2073
+ name
2074
+ url: image_url
2075
+ thumbnail: thumbnail_url
2076
+ credit
2077
+ license {
2078
+ name
2079
+ link
2080
+ }
2081
+ singleUse: single_use
2082
+ }
2083
+ inSpace: in_space
2084
+ timeInSpace: time_in_space
2085
+ timeDocked: time_docked
2086
+ flightsCount: flights_count
2087
+ missionEndsCount: mission_ends_count
2088
+ status: status.name
2089
+ description
2090
+ spacecraftConfig: spacecraft_config {
2091
+ id
2092
+ name
2093
+ type: type.name
2094
+ agency {
2095
+ id
2096
+ name
2097
+ abbrev
2098
+ type: type.name
2099
+ }
2100
+ family {
2101
+ id
2102
+ name
2103
+ description
2104
+ manufacturer {
2105
+ id
2106
+ name
2107
+ abbrev
2108
+ type: type.name
2109
+ }
2110
+ maidenFlight: maiden_flight
2111
+ }
2112
+ inUse: in_use
2113
+ image {
2114
+ id
2115
+ name
2116
+ url: image_url
2117
+ thumbnail: thumbnail_url
2118
+ credit
2119
+ license {
2120
+ name
2121
+ link
2122
+ }
2123
+ singleUse: single_use
2124
+ }
2125
+ }
2126
+ fastestTurnaround: fastest_turnaround
2127
+ }
2128
+ }
2129
+ payloadFlightTarget: payload_flight_target {
2130
+ id
2131
+ destination
2132
+ amount
2133
+ payload {
2134
+ id
2135
+ name
2136
+ type: type.name
2137
+ manufacturer {
2138
+ id
2139
+ name
2140
+ abbrev
2141
+ type: type.name
2142
+ }
2143
+ operator {
2144
+ id
2145
+ name
2146
+ abbrev
2147
+ type: type.name
2148
+ }
2149
+ image {
2150
+ id
2151
+ name
2152
+ url: image_url
2153
+ thumbnail: thumbnail_url
2154
+ credit
2155
+ license {
2156
+ name
2157
+ link
2158
+ }
2159
+ singleUse: single_use
2160
+ }
2161
+ }
2162
+ launch {
2163
+ id
2164
+ name
2165
+ }
2166
+ landing {
2167
+ id
2168
+ attempt
2169
+ success
2170
+ description
2171
+ downrangeDistance: downrange_distance
2172
+ landingLocation: landing_location {
2173
+ id
2174
+ name
2175
+ active
2176
+ abbrev
2177
+ description
2178
+ location {
2179
+ id
2180
+ name
2181
+ active
2182
+ country {
2183
+ id
2184
+ name
2185
+ alpha2Code: alpha_2_code
2186
+ alpha3Code: alpha_3_code
2187
+ nationalityName: nationality_name
2188
+ nationalityNameComposed: nationality_name_composed
2189
+ }
2190
+ image {
2191
+ id
2192
+ name
2193
+ url: image_url
2194
+ thumbnail: thumbnail_url
2195
+ credit
2196
+ license {
2197
+ name
2198
+ link
2199
+ }
2200
+ singleUse: single_use
2201
+ }
2202
+ mapImage: map_image
2203
+ longitude
2204
+ latitude
2205
+ timezone: timezone_name
2206
+ totalLaunchCount: total_launch_count
2207
+ totalLandingCount: total_landing_count
2208
+ }
2209
+ longitude
2210
+ latitude
2211
+ image {
2212
+ id
2213
+ name
2214
+ url: image_url
2215
+ thumbnail: thumbnail_url
2216
+ credit
2217
+ license {
2218
+ name
2219
+ link
2220
+ }
2221
+ singleUse: single_use
2222
+ }
2223
+ landings: {
2224
+ total: attempted_landings
2225
+ successful: successful_landings
2226
+ failed: failed_landings
2227
+ }
2228
+ celestialBody: $.celestial_body {
2229
+ id
2230
+ name
2231
+ type {
2232
+ id
2233
+ name
2234
+ }
2235
+ diameter
2236
+ mass
2237
+ gravity
2238
+ lengthOfDay: length_of_day
2239
+ atmosphere
2240
+ image {
2241
+ id
2242
+ name
2243
+ url: image_url
2244
+ thumbnail: thumbnail_url
2245
+ credit
2246
+ license {
2247
+ name
2248
+ link
2249
+ }
2250
+ singleUse: single_use
2251
+ }
2252
+ description
2253
+ wikiUrl: wiki_url
2254
+ }
2255
+ }
2256
+ type {
2257
+ id
2258
+ name
2259
+ abbrev
2260
+ description
2261
+ }
2262
+ }
2263
+ }
2264
+ flightVehicleChaser: flight_vehicle_chaser {
2265
+ id
2266
+ destination
2267
+ missionEnd: mission_end
2268
+ spacecraft {
2269
+ id
2270
+ name
2271
+ serialNumber: serial_number
2272
+ isPlaceholder: is_placeholder
2273
+ image {
2274
+ id
2275
+ name
2276
+ url: image_url
2277
+ thumbnail: thumbnail_url
2278
+ credit
2279
+ license {
2280
+ name
2281
+ link
2282
+ }
2283
+ singleUse: single_use
2284
+ }
2285
+ inSpace: in_space
2286
+ timeInSpace: time_in_space
2287
+ timeDocked: time_docked
2288
+ flightsCount: flights_count
2289
+ missionEndsCount: mission_ends_count
2290
+ status: status.name
2291
+ description
2292
+ spacecraftConfig: spacecraft_config {
2293
+ id
2294
+ name
2295
+ type: type.name
2296
+ agency {
2297
+ id
2298
+ name
2299
+ abbrev
2300
+ type: type.name
2301
+ }
2302
+ family {
2303
+ id
2304
+ name
2305
+ description
2306
+ manufacturer {
2307
+ id
2308
+ name
2309
+ abbrev
2310
+ type: type.name
2311
+ }
2312
+ maidenFlight: maiden_flight
2313
+ }
2314
+ inUse: in_use
2315
+ image {
2316
+ id
2317
+ name
2318
+ url: image_url
2319
+ thumbnail: thumbnail_url
2320
+ credit
2321
+ license {
2322
+ name
2323
+ link
2324
+ }
2325
+ singleUse: single_use
2326
+ }
2327
+ }
2328
+ fastestTurnaround: fastest_turnaround
2329
+ }
2330
+ launch {
2331
+ id
2332
+ name
2333
+ launchDesignator: launch_designator
2334
+ status {
2335
+ id
2336
+ name
2337
+ abbrev
2338
+ description
2339
+ }
2340
+ lastUpdated: last_updated
2341
+ net
2342
+ netPrecision: net_precision
2343
+ window: {
2344
+ start: window_start
2345
+ end: window_end
2346
+ }
2347
+ image {
2348
+ id
2349
+ name
2350
+ url: image_url
2351
+ thumbnail: thumbnail_url
2352
+ credit
2353
+ license {
2354
+ name
2355
+ link
2356
+ }
2357
+ singleUse: single_use
2358
+ }
2359
+ infographic
2360
+ probability
2361
+ weatherConcerns: weather_concerns
2362
+ failreason
2363
+ hashtag
2364
+ provider: $.launch_service_provider {
2365
+ id
2366
+ name
2367
+ abbrev
2368
+ type: $.type.name
2369
+ }
2370
+ rocket {
2371
+ id
2372
+ configuration {
2373
+ id
2374
+ name
2375
+ fullName: full_name
2376
+ variant
2377
+ families {
2378
+ id
2379
+ name
2380
+ }
2381
+ }
2382
+ }
2383
+ mission {
2384
+ id
2385
+ name
2386
+ type
2387
+ description
2388
+ image {
2389
+ id
2390
+ name
2391
+ url: image_url
2392
+ thumbnail: thumbnail_url
2393
+ credit
2394
+ license {
2395
+ name
2396
+ link
2397
+ }
2398
+ singleUse: single_use
2399
+ }
2400
+ orbit {
2401
+ id
2402
+ name
2403
+ abbrev
2404
+ celestialBody: $.celestial_body {
2405
+ id
2406
+ name
2407
+ }
2408
+ }
2409
+ agencies {
2410
+ id
2411
+ name
2412
+ abbrev
2413
+ type: type.name
2414
+ featured
2415
+ country {
2416
+ id
2417
+ name
2418
+ alpha2Code: alpha_2_code
2419
+ alpha3Code: alpha_3_code
2420
+ nationalityName: nationality_name
2421
+ nationalityNameComposed: nationality_name_composed
2422
+ }
2423
+ description
2424
+ administrator
2425
+ foundingYear: founding_year
2426
+ spacecraft
2427
+ image {
2428
+ id
2429
+ name
2430
+ url: image_url
2431
+ thumbnail: thumbnail_url
2432
+ credit
2433
+ license {
2434
+ name
2435
+ link
2436
+ }
2437
+ singleUse: single_use
2438
+ }
2439
+ logo {
2440
+ id
2441
+ name
2442
+ url: image_url
2443
+ thumbnail: thumbnail_url
2444
+ credit
2445
+ license {
2446
+ name
2447
+ link
2448
+ }
2449
+ singleUse: single_use
2450
+ }
2451
+ socialLogo: social_logo {
2452
+ id
2453
+ name
2454
+ url: image_url
2455
+ thumbnail: thumbnail_url
2456
+ credit
2457
+ license {
2458
+ name
2459
+ link
2460
+ }
2461
+ singleUse: single_use
2462
+ }
2463
+ totalLaunchCount: total_launch_count
2464
+ consecutiveSuccessfulLaunches: consecutive_successful_launches
2465
+ successfulLaunches: successful_launches
2466
+ failedLaunches: failed_launches
2467
+ pendingLaunches: pending_launches
2468
+ consecutiveSuccessfulLandings: consecutive_successful_landings
2469
+ successfulLandings: successful_landings
2470
+ failedLandings: failed_landings
2471
+ attemptedLandings: attempted_landings
2472
+ successfulLandingsSpacecraft: successful_landings_spacecraft
2473
+ failedLandingsSpacecraft: failed_landings_spacecraft
2474
+ attemptedLandingsSpacecraft: attempted_landings_spacecraft
2475
+ successfulLandingsPayload: successful_landings_payload
2476
+ failedLandingsPayload: failed_landings_payload
2477
+ attemptedLandingsPayload: attempted_landings_payload
2478
+ infoUrl: info_url
2479
+ wikiUrl: wiki_url
2480
+ socialMediaLinks: social_media_links {
2481
+ id
2482
+ url
2483
+ socialMedia: social_media {
2484
+ id
2485
+ name
2486
+ url
2487
+ logo {
2488
+ id
2489
+ name
2490
+ url: image_url
2491
+ thumbnail: thumbnail_url
2492
+ credit
2493
+ license {
2494
+ name
2495
+ link
2496
+ }
2497
+ singleUse: single_use
2498
+ }
2499
+ }
2500
+ }
2501
+ }
2502
+
2503
+ infoUrls: info_urls {
2504
+ priority
2505
+ source
2506
+ title
2507
+ description
2508
+ featureImage: feature_image
2509
+ url
2510
+ type: type.name
2511
+ language {
2512
+ id
2513
+ name
2514
+ code
2515
+ }
2516
+ }
2517
+ vidUrls: vid_urls {
2518
+ priority
2519
+ source
2520
+ publisher
2521
+ title
2522
+ description
2523
+ featureImage: feature_image
2524
+ url
2525
+ type: type.name
2526
+ language {
2527
+ id
2528
+ name
2529
+ code
2530
+ }
2531
+ startTime: start_time
2532
+ endTime: end_time
2533
+ live
2534
+ }
2535
+ }
2536
+ pad {
2537
+ id
2538
+ active
2539
+ agencies {
2540
+ id
2541
+ name
2542
+ abbrev
2543
+ type: type.name
2544
+ featured
2545
+ country {
2546
+ id
2547
+ name
2548
+ alpha2Code: alpha_2_code
2549
+ alpha3Code: alpha_3_code
2550
+ nationalityName: nationality_name
2551
+ nationalityNameComposed: nationality_name_composed
2552
+ }
2553
+ description
2554
+ administrator
2555
+ foundingYear: founding_year
2556
+ spacecraft
2557
+ image {
2558
+ id
2559
+ name
2560
+ url: image_url
2561
+ thumbnail: thumbnail_url
2562
+ credit
2563
+ license {
2564
+ name
2565
+ link
2566
+ }
2567
+ singleUse: single_use
2568
+ }
2569
+ logo {
2570
+ id
2571
+ name
2572
+ url: image_url
2573
+ thumbnail: thumbnail_url
2574
+ credit
2575
+ license {
2576
+ name
2577
+ link
2578
+ }
2579
+ singleUse: single_use
2580
+ }
2581
+ socialLogo: social_logo {
2582
+ id
2583
+ name
2584
+ url: image_url
2585
+ thumbnail: thumbnail_url
2586
+ credit
2587
+ license {
2588
+ name
2589
+ link
2590
+ }
2591
+ singleUse: single_use
2592
+ }
2593
+ }
2594
+ name
2595
+ image {
2596
+ id
2597
+ name
2598
+ url: image_url
2599
+ thumbnail: thumbnail_url
2600
+ credit
2601
+ license {
2602
+ name
2603
+ link
2604
+ }
2605
+ singleUse: single_use
2606
+ }
2607
+ description
2608
+ infoUrl: info_url
2609
+ wikiUrl: wiki_url
2610
+ mapUrl: map_url
2611
+ latitude
2612
+ longitude
2613
+ country {
2614
+ id
2615
+ name
2616
+ alpha2Code: alpha_2_code
2617
+ alpha3Code: alpha_3_code
2618
+ nationalityName: nationality_name
2619
+ nationalityNameComposed: nationality_name_composed
2620
+ }
2621
+ mapImage: map_image
2622
+ launchTotalCount: total_launch_count
2623
+ orbitalLaunchAttemptCount: orbital_launch_attempt_count
2624
+ fastestTurnaround: fastest_turnaround
2625
+ location {
2626
+ id
2627
+ name
2628
+ active
2629
+ country {
2630
+ id
2631
+ name
2632
+ alpha2Code: alpha_2_code
2633
+ alpha3Code: alpha_3_code
2634
+ nationalityName: nationality_name
2635
+ nationalityNameComposed: nationality_name_composed
2636
+ }
2637
+ description
2638
+ image {
2639
+ id
2640
+ name
2641
+ url: image_url
2642
+ thumbnail: thumbnail_url
2643
+ credit
2644
+ license {
2645
+ name
2646
+ link
2647
+ }
2648
+ singleUse: single_use
2649
+ }
2650
+ mapImage: map_image
2651
+ longitude
2652
+ latitude
2653
+ timezone: timezone_name
2654
+ totalLaunchCount: total_launch_count
2655
+ totalLandingCount: total_landing_count
2656
+ }
2657
+ }
2658
+ webcastLive: webcast_live
2659
+ program {
2660
+ id
2661
+ name
2662
+ image {
2663
+ id
2664
+ name
2665
+ url: image_url
2666
+ thumbnail: thumbnail_url
2667
+ credit
2668
+ license {
2669
+ name
2670
+ link
2671
+ }
2672
+ singleUse: single_use
2673
+ }
2674
+ infoUrl: info_url
2675
+ wikiUrl: wiki_url
2676
+ description
2677
+ agencies {
2678
+ id
2679
+ name
2680
+ abbrev
2681
+ type: type.name
2682
+ }
2683
+ startDate: start_date
2684
+ endDate: end_date
2685
+ missionPatches: mission_patches {
2686
+ id
2687
+ name
2688
+ priority
2689
+ imageUrl: image_url
2690
+ agency {
2691
+ id
2692
+ name
2693
+ abbrev
2694
+ type: type.name
2695
+ }
2696
+ }
2697
+ }
2698
+ orbitalLaunchAttemps: orbital_launch_attempt_count
2699
+ locationLaunchAttemps: location_launch_attempt_count
2700
+ padLaunchAttemps: pad_launch_attempt_count
2701
+ agencyLaunchAttemps: agency_launch_attempt_count
2702
+ orbitalLaunchAttempsYear: orbital_launch_attempt_count_year
2703
+ locationLaunchAttempsYear: location_launch_attempt_count_year
2704
+ padLaunchAttempsYear: pad_launch_attempt_count_year
2705
+ agencyLaunchAttempsYear: agency_launch_attempt_count_year
2706
+ }
2707
+ landing {
2708
+ id
2709
+ attempt
2710
+ success
2711
+ description
2712
+ downrangeDistance: downrange_distance
2713
+ landingLocation: landing_location {
2714
+ id
2715
+ name
2716
+ active
2717
+ abbrev
2718
+ description
2719
+ location {
2720
+ id
2721
+ name
2722
+ active
2723
+ country {
2724
+ id
2725
+ name
2726
+ alpha2Code: alpha_2_code
2727
+ alpha3Code: alpha_3_code
2728
+ nationalityName: nationality_name
2729
+ nationalityNameComposed: nationality_name_composed
2730
+ }
2731
+ image {
2732
+ id
2733
+ name
2734
+ url: image_url
2735
+ thumbnail: thumbnail_url
2736
+ credit
2737
+ license {
2738
+ name
2739
+ link
2740
+ }
2741
+ singleUse: single_use
2742
+ }
2743
+ mapImage: map_image
2744
+ longitude
2745
+ latitude
2746
+ timezone: timezone_name
2747
+ totalLaunchCount: total_launch_count
2748
+ totalLandingCount: total_landing_count
2749
+ }
2750
+ longitude
2751
+ latitude
2752
+ image {
2753
+ id
2754
+ name
2755
+ url: image_url
2756
+ thumbnail: thumbnail_url
2757
+ credit
2758
+ license {
2759
+ name
2760
+ link
2761
+ }
2762
+ singleUse: single_use
2763
+ }
2764
+ landings: {
2765
+ total: attempted_landings
2766
+ successful: successful_landings
2767
+ failed: failed_landings
2768
+ }
2769
+ celestialBody: $.celestial_body {
2770
+ id
2771
+ name
2772
+ type {
2773
+ id
2774
+ name
2775
+ }
2776
+ diameter
2777
+ mass
2778
+ gravity
2779
+ lengthOfDay: length_of_day
2780
+ atmosphere
2781
+ image {
2782
+ id
2783
+ name
2784
+ url: image_url
2785
+ thumbnail: thumbnail_url
2786
+ credit
2787
+ license {
2788
+ name
2789
+ link
2790
+ }
2791
+ singleUse: single_use
2792
+ }
2793
+ description
2794
+ wikiUrl: wiki_url
2795
+ }
2796
+ }
2797
+ type {
2798
+ id
2799
+ name
2800
+ abbrev
2801
+ description
2802
+ }
2803
+ }
2804
+ }
2805
+ spaceStationChaser: space_station_chaser {
2806
+ id
2807
+ name
2808
+ image {
2809
+ id
2810
+ name
2811
+ url: image_url
2812
+ thumbnail: thumbnail_url
2813
+ credit
2814
+ license {
2815
+ name
2816
+ link
2817
+ }
2818
+ singleUse: single_use
2819
+ }
2820
+ status: status.name
2821
+ founded
2822
+ deorbited
2823
+ description
2824
+ orbit
2825
+ type: type.name
2826
+ }
2827
+ payloadFlightChaser: payload_flight_chaser {
2828
+ id
2829
+ url
2830
+ destination
2831
+ amount
2832
+ payload {
2833
+ id
2834
+ name
2835
+ type: type.name
2836
+ manufacturer {
2837
+ id
2838
+ name
2839
+ abbrev
2840
+ type: type.name
2841
+ featured
2842
+ country {
2843
+ id
2844
+ name
2845
+ alpha2Code: alpha_2_code
2846
+ alpha3Code: alpha_3_code
2847
+ nationalityName: nationality_name
2848
+ nationalityNameComposed: nationality_name_composed
2849
+ }
2850
+ description
2851
+ administrator
2852
+ foundingYear: founding_year
2853
+ spacecraft
2854
+ image {
2855
+ id
2856
+ name
2857
+ url: image_url
2858
+ thumbnail: thumbnail_url
2859
+ credit
2860
+ license {
2861
+ name
2862
+ link
2863
+ }
2864
+ singleUse: single_use
2865
+ }
2866
+ logo {
2867
+ id
2868
+ name
2869
+ url: image_url
2870
+ thumbnail: thumbnail_url
2871
+ credit
2872
+ license {
2873
+ name
2874
+ link
2875
+ }
2876
+ singleUse: single_use
2877
+ }
2878
+ socialLogo: social_logo {
2879
+ id
2880
+ name
2881
+ url: image_url
2882
+ thumbnail: thumbnail_url
2883
+ credit
2884
+ license {
2885
+ name
2886
+ link
2887
+ }
2888
+ singleUse: single_use
2889
+ }
2890
+ }
2891
+ operator {
2892
+ id
2893
+ name
2894
+ abbrev
2895
+ type: type.name
2896
+ featured
2897
+ country {
2898
+ id
2899
+ name
2900
+ alpha2Code: alpha_2_code
2901
+ alpha3Code: alpha_3_code
2902
+ nationalityName: nationality_name
2903
+ nationalityNameComposed: nationality_name_composed
2904
+ }
2905
+ description
2906
+ administrator
2907
+ foundingYear: founding_year
2908
+ spacecraft
2909
+ image {
2910
+ id
2911
+ name
2912
+ url: image_url
2913
+ thumbnail: thumbnail_url
2914
+ credit
2915
+ license {
2916
+ name
2917
+ link
2918
+ }
2919
+ singleUse: single_use
2920
+ }
2921
+ logo {
2922
+ id
2923
+ name
2924
+ url: image_url
2925
+ thumbnail: thumbnail_url
2926
+ credit
2927
+ license {
2928
+ name
2929
+ link
2930
+ }
2931
+ singleUse: single_use
2932
+ }
2933
+ socialLogo: social_logo {
2934
+ id
2935
+ name
2936
+ url: image_url
2937
+ thumbnail: thumbnail_url
2938
+ credit
2939
+ license {
2940
+ name
2941
+ link
2942
+ }
2943
+ singleUse: single_use
2944
+ }
2945
+ }
2946
+ image {
2947
+ id
2948
+ name
2949
+ url: image_url
2950
+ thumbnail: thumbnail_url
2951
+ credit
2952
+ license {
2953
+ name
2954
+ link
2955
+ }
2956
+ singleUse: single_use
2957
+ }
2958
+ wikiLink: wiki_link
2959
+ infoLink: info_link
2960
+ program {
2961
+ id
2962
+ name
2963
+ image {
2964
+ id
2965
+ name
2966
+ url: image_url
2967
+ thumbnail: thumbnail_url
2968
+ credit
2969
+ license {
2970
+ name
2971
+ link
2972
+ }
2973
+ singleUse: single_use
2974
+ }
2975
+ infoUrl: info_url
2976
+ wikiUrl: wiki_url
2977
+ }
2978
+ cost
2979
+ mass
2980
+ description
2981
+ }
2982
+ launch {
2983
+ id
2984
+ name
2985
+ launchDesignator: launch_designator
2986
+ status {
2987
+ id
2988
+ name
2989
+ abbrev
2990
+ description
2991
+ }
2992
+ lastUpdated: last_updated
2993
+ net
2994
+ netPrecision: net_precision
2995
+ window: {
2996
+ start: window_start
2997
+ end: window_end
2998
+ }
2999
+ image {
3000
+ id
3001
+ name
3002
+ url: image_url
3003
+ thumbnail: thumbnail_url
3004
+ credit
3005
+ license {
3006
+ name
3007
+ link
3008
+ }
3009
+ singleUse: single_use
3010
+ }
3011
+ infographic
3012
+ probability
3013
+ weatherConcerns: weather_concerns
3014
+ failreason
3015
+ hashtag
3016
+ provider: $.launch_service_provider {
3017
+ id
3018
+ name
3019
+ abbrev
3020
+ type: $.type.name
3021
+ }
3022
+ rocket {
3023
+ id
3024
+ configuration {
3025
+ id
3026
+ name
3027
+ fullName: full_name
3028
+ variant
3029
+ families {
3030
+ id
3031
+ name
3032
+ }
3033
+ }
3034
+ }
3035
+ mission {
3036
+ id
3037
+ name
3038
+ type
3039
+ description
3040
+ image {
3041
+ id
3042
+ name
3043
+ url: image_url
3044
+ thumbnail: thumbnail_url
3045
+ credit
3046
+ license {
3047
+ name
3048
+ link
3049
+ }
3050
+ singleUse: single_use
3051
+ }
3052
+ orbit {
3053
+ id
3054
+ name
3055
+ abbrev
3056
+ celestialBody: $.celestial_body {
3057
+ id
3058
+ name
3059
+ }
3060
+ }
3061
+ agencies {
3062
+ id
3063
+ name
3064
+ abbrev
3065
+ type: type.name
3066
+ featured
3067
+ country {
3068
+ id
3069
+ name
3070
+ alpha2Code: alpha_2_code
3071
+ alpha3Code: alpha_3_code
3072
+ nationalityName: nationality_name
3073
+ nationalityNameComposed: nationality_name_composed
3074
+ }
3075
+ description
3076
+ administrator
3077
+ foundingYear: founding_year
3078
+ spacecraft
3079
+ image {
3080
+ id
3081
+ name
3082
+ url: image_url
3083
+ thumbnail: thumbnail_url
3084
+ credit
3085
+ license {
3086
+ name
3087
+ link
3088
+ }
3089
+ singleUse: single_use
3090
+ }
3091
+ logo {
3092
+ id
3093
+ name
3094
+ url: image_url
3095
+ thumbnail: thumbnail_url
3096
+ credit
3097
+ license {
3098
+ name
3099
+ link
3100
+ }
3101
+ singleUse: single_use
3102
+ }
3103
+ socialLogo: social_logo {
3104
+ id
3105
+ name
3106
+ url: image_url
3107
+ thumbnail: thumbnail_url
3108
+ credit
3109
+ license {
3110
+ name
3111
+ link
3112
+ }
3113
+ singleUse: single_use
3114
+ }
3115
+ totalLaunchCount: total_launch_count
3116
+ consecutiveSuccessfulLaunches: consecutive_successful_launches
3117
+ successfulLaunches: successful_launches
3118
+ failedLaunches: failed_launches
3119
+ pendingLaunches: pending_launches
3120
+ consecutiveSuccessfulLandings: consecutive_successful_landings
3121
+ successfulLandings: successful_landings
3122
+ failedLandings: failed_landings
3123
+ attemptedLandings: attempted_landings
3124
+ successfulLandingsSpacecraft: successful_landings_spacecraft
3125
+ failedLandingsSpacecraft: failed_landings_spacecraft
3126
+ attemptedLandingsSpacecraft: attempted_landings_spacecraft
3127
+ successfulLandingsPayload: successful_landings_payload
3128
+ failedLandingsPayload: failed_landings_payload
3129
+ attemptedLandingsPayload: attempted_landings_payload
3130
+ infoUrl: info_url
3131
+ wikiUrl: wiki_url
3132
+ socialMediaLinks: social_media_links {
3133
+ id
3134
+ url
3135
+ socialMedia: social_media {
3136
+ id
3137
+ name
3138
+ url
3139
+ logo {
3140
+ id
3141
+ name
3142
+ url: image_url
3143
+ thumbnail: thumbnail_url
3144
+ credit
3145
+ license {
3146
+ name
3147
+ link
3148
+ }
3149
+ singleUse: single_use
3150
+ }
3151
+ }
3152
+ }
3153
+ }
3154
+
3155
+ infoUrls: info_urls {
3156
+ priority
3157
+ source
3158
+ title
3159
+ description
3160
+ featureImage: feature_image
3161
+ url
3162
+ type: type.name
3163
+ language {
3164
+ id
3165
+ name
3166
+ code
3167
+ }
3168
+ }
3169
+ vidUrls: vid_urls {
3170
+ priority
3171
+ source
3172
+ publisher
3173
+ title
3174
+ description
3175
+ featureImage: feature_image
3176
+ url
3177
+ type: type.name
3178
+ language {
3179
+ id
3180
+ name
3181
+ code
3182
+ }
3183
+ startTime: start_time
3184
+ endTime: end_time
3185
+ live
3186
+ }
3187
+ }
3188
+ pad {
3189
+ id
3190
+ active
3191
+ agencies {
3192
+ id
3193
+ name
3194
+ abbrev
3195
+ type: type.name
3196
+ featured
3197
+ country {
3198
+ id
3199
+ name
3200
+ alpha2Code: alpha_2_code
3201
+ alpha3Code: alpha_3_code
3202
+ nationalityName: nationality_name
3203
+ nationalityNameComposed: nationality_name_composed
3204
+ }
3205
+ description
3206
+ administrator
3207
+ foundingYear: founding_year
3208
+ spacecraft
3209
+ image {
3210
+ id
3211
+ name
3212
+ url: image_url
3213
+ thumbnail: thumbnail_url
3214
+ credit
3215
+ license {
3216
+ name
3217
+ link
3218
+ }
3219
+ singleUse: single_use
3220
+ }
3221
+ logo {
3222
+ id
3223
+ name
3224
+ url: image_url
3225
+ thumbnail: thumbnail_url
3226
+ credit
3227
+ license {
3228
+ name
3229
+ link
3230
+ }
3231
+ singleUse: single_use
3232
+ }
3233
+ socialLogo: social_logo {
3234
+ id
3235
+ name
3236
+ url: image_url
3237
+ thumbnail: thumbnail_url
3238
+ credit
3239
+ license {
3240
+ name
3241
+ link
3242
+ }
3243
+ singleUse: single_use
3244
+ }
3245
+ }
3246
+ name
3247
+ image {
3248
+ id
3249
+ name
3250
+ url: image_url
3251
+ thumbnail: thumbnail_url
3252
+ credit
3253
+ license {
3254
+ name
3255
+ link
3256
+ }
3257
+ singleUse: single_use
3258
+ }
3259
+ description
3260
+ infoUrl: info_url
3261
+ wikiUrl: wiki_url
3262
+ mapUrl: map_url
3263
+ latitude
3264
+ longitude
3265
+ country {
3266
+ id
3267
+ name
3268
+ alpha2Code: alpha_2_code
3269
+ alpha3Code: alpha_3_code
3270
+ nationalityName: nationality_name
3271
+ nationalityNameComposed: nationality_name_composed
3272
+ }
3273
+ mapImage: map_image
3274
+ launchTotalCount: total_launch_count
3275
+ orbitalLaunchAttemptCount: orbital_launch_attempt_count
3276
+ fastestTurnaround: fastest_turnaround
3277
+ location {
3278
+ id
3279
+ name
3280
+ active
3281
+ country {
3282
+ id
3283
+ name
3284
+ alpha2Code: alpha_2_code
3285
+ alpha3Code: alpha_3_code
3286
+ nationalityName: nationality_name
3287
+ nationalityNameComposed: nationality_name_composed
3288
+ }
3289
+ description
3290
+ image {
3291
+ id
3292
+ name
3293
+ url: image_url
3294
+ thumbnail: thumbnail_url
3295
+ credit
3296
+ license {
3297
+ name
3298
+ link
3299
+ }
3300
+ singleUse: single_use
3301
+ }
3302
+ mapImage: map_image
3303
+ longitude
3304
+ latitude
3305
+ timezone: timezone_name
3306
+ totalLaunchCount: total_launch_count
3307
+ totalLandingCount: total_landing_count
3308
+ }
3309
+ }
3310
+ webcastLive: webcast_live
3311
+ program {
3312
+ id
3313
+ name
3314
+ image {
3315
+ id
3316
+ name
3317
+ url: image_url
3318
+ thumbnail: thumbnail_url
3319
+ credit
3320
+ license {
3321
+ name
3322
+ link
3323
+ }
3324
+ singleUse: single_use
3325
+ }
3326
+ infoUrl: info_url
3327
+ wikiUrl: wiki_url
3328
+ description
3329
+ agencies {
3330
+ id
3331
+ name
3332
+ abbrev
3333
+ type: type.name
3334
+ }
3335
+ startDate: start_date
3336
+ endDate: end_date
3337
+ missionPatches: mission_patches {
3338
+ id
3339
+ name
3340
+ priority
3341
+ imageUrl: image_url
3342
+ agency {
3343
+ id
3344
+ name
3345
+ abbrev
3346
+ type: type.name
3347
+ }
3348
+ }
3349
+ }
3350
+ orbitalLaunchAttemps: orbital_launch_attempt_count
3351
+ locationLaunchAttemps: location_launch_attempt_count
3352
+ padLaunchAttemps: pad_launch_attempt_count
3353
+ agencyLaunchAttemps: agency_launch_attempt_count
3354
+ orbitalLaunchAttempsYear: orbital_launch_attempt_count_year
3355
+ locationLaunchAttempsYear: location_launch_attempt_count_year
3356
+ padLaunchAttempsYear: pad_launch_attempt_count_year
3357
+ agencyLaunchAttempsYear: agency_launch_attempt_count_year
3358
+ }
3359
+ landing {
3360
+ id
3361
+ attempt
3362
+ success
3363
+ description
3364
+ downrangeDistance: downrange_distance
3365
+ landingLocation: landing_location {
3366
+ id
3367
+ name
3368
+ active
3369
+ abbrev
3370
+ description
3371
+ location {
3372
+ id
3373
+ name
3374
+ active
3375
+ country {
3376
+ id
3377
+ name
3378
+ alpha2Code: alpha_2_code
3379
+ alpha3Code: alpha_3_code
3380
+ nationalityName: nationality_name
3381
+ nationalityNameComposed: nationality_name_composed
3382
+ }
3383
+ image {
3384
+ id
3385
+ name
3386
+ url: image_url
3387
+ thumbnail: thumbnail_url
3388
+ credit
3389
+ license {
3390
+ name
3391
+ link
3392
+ }
3393
+ singleUse: single_use
3394
+ }
3395
+ mapImage: map_image
3396
+ longitude
3397
+ latitude
3398
+ timezone: timezone_name
3399
+ totalLaunchCount: total_launch_count
3400
+ totalLandingCount: total_landing_count
3401
+ }
3402
+ longitude
3403
+ latitude
3404
+ image {
3405
+ id
3406
+ name
3407
+ url: image_url
3408
+ thumbnail: thumbnail_url
3409
+ credit
3410
+ license {
3411
+ name
3412
+ link
3413
+ }
3414
+ singleUse: single_use
3415
+ }
3416
+ landings: {
3417
+ total: attempted_landings
3418
+ successful: successful_landings
3419
+ failed: failed_landings
3420
+ }
3421
+ celestialBody: $.celestial_body {
3422
+ id
3423
+ name
3424
+ type {
3425
+ id
3426
+ name
3427
+ }
3428
+ diameter
3429
+ mass
3430
+ gravity
3431
+ lengthOfDay: length_of_day
3432
+ atmosphere
3433
+ image {
3434
+ id
3435
+ name
3436
+ url: image_url
3437
+ thumbnail: thumbnail_url
3438
+ credit
3439
+ license {
3440
+ name
3441
+ link
3442
+ }
3443
+ singleUse: single_use
3444
+ }
3445
+ description
3446
+ wikiUrl: wiki_url
3447
+ }
3448
+ }
3449
+ type {
3450
+ id
3451
+ name
3452
+ abbrev
3453
+ description
3454
+ }
3455
+ }
3456
+ }
3457
+ }
3458
+ """
3459
+ )
3460
+ }