-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerated.dynamic.graphql
354 lines (354 loc) · 7.79 KB
/
generated.dynamic.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
schema {
query: Root
}
type Root {
node(id: ID!): Node
allFilms(after: String first: Int before: String last: Int): FilmsConnection
film(id: ID filmID: ID): Film
allPlanets(after: String first: Int before: String last: Int): PlanetsConnection
planet(id: ID planetID: ID): Planet
allStarships(after: String first: Int before: String last: Int): StarshipsConnection
starship(id: ID starshipID: ID): Starship
allVehicles(after: String first: Int before: String last: Int): VehiclesConnection
vehicle(id: ID vehicleID: ID): Vehicle
allSpecies(after: String first: Int before: String last: Int): SpeciesConnection
species(id: ID speciesID: ID): Species
allPeople(after: String first: Int before: String last: Int): PeopleConnection
person(id: ID personID: ID): Person
}
interface Node {
created: String
edited: String
id: ID!
}
type PageInfo {
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: String
endCursor: String
}
type Film implements Node {
title: String
episodeID: Int
openingCrawl: String
director: String
producers: [String]
releaseDate: String
created: String
edited: String
id: ID!
speciesConnection(after: String first: Int before: String last: Int): FilmSpeciesConnection
starshipConnection(after: String first: Int before: String last: Int): FilmStarshipsConnection
vehicleConnection(after: String first: Int before: String last: Int): FilmVehiclesConnection
personConnection(after: String first: Int before: String last: Int): FilmPeopleConnection
planetConnection(after: String first: Int before: String last: Int): FilmPlanetsConnection
}
type Planet implements Node {
name: String
diameter: Int
rotationPeriod: Int
orbitalPeriod: Int
gravity: String
population: Float
climates: [String]
terrains: [String]
surfaceWater: Float
created: String
edited: String
id: ID!
personConnection(after: String first: Int before: String last: Int): PlanetPeopleConnection
filmConnection(after: String first: Int before: String last: Int): PlanetFilmsConnection
}
type Starship implements Node {
name: String
model: String
starshipClass: String
manufacturers: [String]
costInCredits: Float
length: Float
crew: String
passengers: String
maxAtmospheringSpeed: Int
hyperdriveRating: Float
MGLT: Int
cargoCapacity: Float
consumables: String
created: String
edited: String
id: ID!
personConnection(after: String first: Int before: String last: Int): StarshipPeopleConnection
filmConnection(after: String first: Int before: String last: Int): StarshipFilmsConnection
}
type Vehicle implements Node {
name: String
model: String
vehicleClass: String
manufacturers: [String]
costInCredits: Float
length: Float
crew: String
passengers: String
maxAtmospheringSpeed: Int
cargoCapacity: Float
consumables: String
created: String
edited: String
id: ID!
personConnection(after: String first: Int before: String last: Int): VehiclePeopleConnection
filmConnection(after: String first: Int before: String last: Int): VehicleFilmsConnection
}
type Species implements Node {
name: String
classification: String
designation: String
averageHeight: Float
averageLifespan: Int
eyeColors: [String]
hairColors: [String]
skinColors: [String]
lanuage: String
homeworld: Planet
created: String
edited: String
id: ID!
personConnection(after: String first: Int before: String last: Int): SpeciesPeopleConnection
filmConnection(after: String first: Int before: String last: Int): SpeciesFilmsConnection
}
type Person implements Node {
name: String
birthYear: String
gender: String
eyeColor: String
hairColor: String
skinColor: String
height: Int
mass: Float
homeworld: Planet
species: Species
created: String
edited: String
id: ID!
filmConnection(after: String first: Int before: String last: Int): PersonFilmsConnection
starshipConnection(after: String first: Int before: String last: Int): PersonStarshipsConnection
vehicleConnection(after: String first: Int before: String last: Int): PersonVehiclesConnection
}
type FilmSpeciesEdge {
node: Species
cursor: String!
}
type FilmStarshipsEdge {
node: Starship
cursor: String!
}
type FilmVehiclesEdge {
node: Vehicle
cursor: String!
}
type FilmPeopleEdge {
node: Person
cursor: String!
}
type FilmPlanetsEdge {
node: Planet
cursor: String!
}
type PlanetPeopleEdge {
node: Person
cursor: String!
}
type PlanetFilmsEdge {
node: Film
cursor: String!
}
type StarshipPeopleEdge {
node: Person
cursor: String!
}
type StarshipFilmsEdge {
node: Film
cursor: String!
}
type VehiclePeopleEdge {
node: Person
cursor: String!
}
type VehicleFilmsEdge {
node: Film
cursor: String!
}
type SpeciesPeopleEdge {
node: Person
cursor: String!
}
type SpeciesFilmsEdge {
node: Film
cursor: String!
}
type PersonFilmsEdge {
node: Film
cursor: String!
}
type PersonStarshipsEdge {
node: Starship
cursor: String!
}
type PersonVehiclesEdge {
node: Vehicle
cursor: String!
}
type FilmsEdge {
node: Film
cursor: String!
}
type PlanetsEdge {
node: Planet
cursor: String!
}
type StarshipsEdge {
node: Starship
cursor: String!
}
type VehiclesEdge {
node: Vehicle
cursor: String!
}
type SpeciesEdge {
node: Species
cursor: String!
}
type PeopleEdge {
node: Person
cursor: String!
}
type FilmSpeciesConnection {
pageInfo: PageInfo!
edges: [FilmSpeciesEdge]
totalCount: Int
species: [Species]
}
type FilmStarshipsConnection {
pageInfo: PageInfo!
edges: [FilmStarshipsEdge]
totalCount: Int
starships: [Starship]
}
type FilmVehiclesConnection {
pageInfo: PageInfo!
edges: [FilmVehiclesEdge]
totalCount: Int
vehicles: [Vehicle]
}
type FilmPeopleConnection {
pageInfo: PageInfo!
edges: [FilmPeopleEdge]
totalCount: Int
people: [Person]
}
type FilmPlanetsConnection {
pageInfo: PageInfo!
edges: [FilmPlanetsEdge]
totalCount: Int
planets: [Planet]
}
type PlanetPeopleConnection {
pageInfo: PageInfo!
edges: [PlanetPeopleEdge]
totalCount: Int
people: [Person]
}
type PlanetFilmsConnection {
pageInfo: PageInfo!
edges: [PlanetFilmsEdge]
totalCount: Int
films: [Film]
}
type StarshipPeopleConnection {
pageInfo: PageInfo!
edges: [StarshipPeopleEdge]
totalCount: Int
people: [Person]
}
type StarshipFilmsConnection {
pageInfo: PageInfo!
edges: [StarshipFilmsEdge]
totalCount: Int
films: [Film]
}
type VehiclePeopleConnection {
pageInfo: PageInfo!
edges: [VehiclePeopleEdge]
totalCount: Int
people: [Person]
}
type VehicleFilmsConnection {
pageInfo: PageInfo!
edges: [VehicleFilmsEdge]
totalCount: Int
films: [Film]
}
type SpeciesPeopleConnection {
pageInfo: PageInfo!
edges: [SpeciesPeopleEdge]
totalCount: Int
people: [Person]
}
type SpeciesFilmsConnection {
pageInfo: PageInfo!
edges: [SpeciesFilmsEdge]
totalCount: Int
films: [Film]
}
type PersonFilmsConnection {
pageInfo: PageInfo!
edges: [PersonFilmsEdge]
totalCount: Int
films: [Film]
}
type PersonStarshipsConnection {
pageInfo: PageInfo!
edges: [PersonStarshipsEdge]
totalCount: Int
starships: [Starship]
}
type PersonVehiclesConnection {
pageInfo: PageInfo!
edges: [PersonVehiclesEdge]
totalCount: Int
vehicles: [Vehicle]
}
type FilmsConnection {
pageInfo: PageInfo!
edges: [FilmsEdge]
totalCount: Int
films: [Film]
}
type PlanetsConnection {
pageInfo: PageInfo!
edges: [PlanetsEdge]
totalCount: Int
planets: [Planet]
}
type StarshipsConnection {
pageInfo: PageInfo!
edges: [StarshipsEdge]
totalCount: Int
starships: [Starship]
}
type VehiclesConnection {
pageInfo: PageInfo!
edges: [VehiclesEdge]
totalCount: Int
vehicles: [Vehicle]
}
type SpeciesConnection {
pageInfo: PageInfo!
edges: [SpeciesEdge]
totalCount: Int
species: [Species]
}
type PeopleConnection {
pageInfo: PageInfo!
edges: [PeopleEdge]
totalCount: Int
people: [Person]
}