@luvio/graphql-parser 0.99.0 → 0.99.1

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.
@@ -1,1166 +0,0 @@
1
- schema {
2
- query: Root
3
- }
4
-
5
- """A single film."""
6
- type Film implements Node {
7
- """The title of this film."""
8
- title: String
9
-
10
- """The episode number of this film."""
11
- episodeID: Int
12
-
13
- """The opening paragraphs at the beginning of this film."""
14
- openingCrawl: String
15
-
16
- """The name of the director of this film."""
17
- director: String
18
-
19
- """The name(s) of the producer(s) of this film."""
20
- producers: [String]
21
-
22
- """The ISO 8601 date format of film release at original creator country."""
23
- releaseDate: String
24
- speciesConnection(after: String, first: Int, before: String, last: Int): FilmSpeciesConnection
25
- starshipConnection(after: String, first: Int, before: String, last: Int): FilmStarshipsConnection
26
- vehicleConnection(after: String, first: Int, before: String, last: Int): FilmVehiclesConnection
27
- characterConnection(after: String, first: Int, before: String, last: Int): FilmCharactersConnection
28
- planetConnection(after: String, first: Int, before: String, last: Int): FilmPlanetsConnection
29
-
30
- """The ISO 8601 date format of the time that this resource was created."""
31
- created: String
32
-
33
- """The ISO 8601 date format of the time that this resource was edited."""
34
- edited: String
35
-
36
- """The ID of an object"""
37
- id: ID!
38
- }
39
-
40
- """A connection to a list of items."""
41
- type FilmCharactersConnection {
42
- """Information to aid in pagination."""
43
- pageInfo: PageInfo!
44
-
45
- """A list of edges."""
46
- edges: [FilmCharactersEdge]
47
-
48
- """
49
- A count of the total number of objects in this connection, ignoring pagination.
50
- This allows a client to fetch the first five objects by passing "5" as the
51
- argument to "first", then fetch the total count so it could display "5 of 83",
52
- for example.
53
- """
54
- totalCount: Int
55
-
56
- """
57
- A list of all of the objects returned in the connection. This is a convenience
58
- field provided for quickly exploring the API; rather than querying for
59
- "{ edges { node } }" when no edge data is needed, this field can be be used
60
- instead. Note that when clients like Relay need to fetch the "cursor" field on
61
- the edge to enable efficient pagination, this shortcut cannot be used, and the
62
- full "{ edges { node } }" version should be used instead.
63
- """
64
- characters: [Person]
65
- }
66
-
67
- """An edge in a connection."""
68
- type FilmCharactersEdge {
69
- """The item at the end of the edge"""
70
- node: Person
71
-
72
- """A cursor for use in pagination"""
73
- cursor: String!
74
- }
75
-
76
- """A connection to a list of items."""
77
- type FilmPlanetsConnection {
78
- """Information to aid in pagination."""
79
- pageInfo: PageInfo!
80
-
81
- """A list of edges."""
82
- edges: [FilmPlanetsEdge]
83
-
84
- """
85
- A count of the total number of objects in this connection, ignoring pagination.
86
- This allows a client to fetch the first five objects by passing "5" as the
87
- argument to "first", then fetch the total count so it could display "5 of 83",
88
- for example.
89
- """
90
- totalCount: Int
91
-
92
- """
93
- A list of all of the objects returned in the connection. This is a convenience
94
- field provided for quickly exploring the API; rather than querying for
95
- "{ edges { node } }" when no edge data is needed, this field can be be used
96
- instead. Note that when clients like Relay need to fetch the "cursor" field on
97
- the edge to enable efficient pagination, this shortcut cannot be used, and the
98
- full "{ edges { node } }" version should be used instead.
99
- """
100
- planets: [Planet]
101
- }
102
-
103
- """An edge in a connection."""
104
- type FilmPlanetsEdge {
105
- """The item at the end of the edge"""
106
- node: Planet
107
-
108
- """A cursor for use in pagination"""
109
- cursor: String!
110
- }
111
-
112
- """A connection to a list of items."""
113
- type FilmsConnection {
114
- """Information to aid in pagination."""
115
- pageInfo: PageInfo!
116
-
117
- """A list of edges."""
118
- edges: [FilmsEdge]
119
-
120
- """
121
- A count of the total number of objects in this connection, ignoring pagination.
122
- This allows a client to fetch the first five objects by passing "5" as the
123
- argument to "first", then fetch the total count so it could display "5 of 83",
124
- for example.
125
- """
126
- totalCount: Int
127
-
128
- """
129
- A list of all of the objects returned in the connection. This is a convenience
130
- field provided for quickly exploring the API; rather than querying for
131
- "{ edges { node } }" when no edge data is needed, this field can be be used
132
- instead. Note that when clients like Relay need to fetch the "cursor" field on
133
- the edge to enable efficient pagination, this shortcut cannot be used, and the
134
- full "{ edges { node } }" version should be used instead.
135
- """
136
- films: [Film]
137
- }
138
-
139
- """An edge in a connection."""
140
- type FilmsEdge {
141
- """The item at the end of the edge"""
142
- node: Film
143
-
144
- """A cursor for use in pagination"""
145
- cursor: String!
146
- }
147
-
148
- """A connection to a list of items."""
149
- type FilmSpeciesConnection {
150
- """Information to aid in pagination."""
151
- pageInfo: PageInfo!
152
-
153
- """A list of edges."""
154
- edges: [FilmSpeciesEdge]
155
-
156
- """
157
- A count of the total number of objects in this connection, ignoring pagination.
158
- This allows a client to fetch the first five objects by passing "5" as the
159
- argument to "first", then fetch the total count so it could display "5 of 83",
160
- for example.
161
- """
162
- totalCount: Int
163
-
164
- """
165
- A list of all of the objects returned in the connection. This is a convenience
166
- field provided for quickly exploring the API; rather than querying for
167
- "{ edges { node } }" when no edge data is needed, this field can be be used
168
- instead. Note that when clients like Relay need to fetch the "cursor" field on
169
- the edge to enable efficient pagination, this shortcut cannot be used, and the
170
- full "{ edges { node } }" version should be used instead.
171
- """
172
- species: [Species]
173
- }
174
-
175
- """An edge in a connection."""
176
- type FilmSpeciesEdge {
177
- """The item at the end of the edge"""
178
- node: Species
179
-
180
- """A cursor for use in pagination"""
181
- cursor: String!
182
- }
183
-
184
- """A connection to a list of items."""
185
- type FilmStarshipsConnection {
186
- """Information to aid in pagination."""
187
- pageInfo: PageInfo!
188
-
189
- """A list of edges."""
190
- edges: [FilmStarshipsEdge]
191
-
192
- """
193
- A count of the total number of objects in this connection, ignoring pagination.
194
- This allows a client to fetch the first five objects by passing "5" as the
195
- argument to "first", then fetch the total count so it could display "5 of 83",
196
- for example.
197
- """
198
- totalCount: Int
199
-
200
- """
201
- A list of all of the objects returned in the connection. This is a convenience
202
- field provided for quickly exploring the API; rather than querying for
203
- "{ edges { node } }" when no edge data is needed, this field can be be used
204
- instead. Note that when clients like Relay need to fetch the "cursor" field on
205
- the edge to enable efficient pagination, this shortcut cannot be used, and the
206
- full "{ edges { node } }" version should be used instead.
207
- """
208
- starships: [Starship]
209
- }
210
-
211
- """An edge in a connection."""
212
- type FilmStarshipsEdge {
213
- """The item at the end of the edge"""
214
- node: Starship
215
-
216
- """A cursor for use in pagination"""
217
- cursor: String!
218
- }
219
-
220
- """A connection to a list of items."""
221
- type FilmVehiclesConnection {
222
- """Information to aid in pagination."""
223
- pageInfo: PageInfo!
224
-
225
- """A list of edges."""
226
- edges: [FilmVehiclesEdge]
227
-
228
- """
229
- A count of the total number of objects in this connection, ignoring pagination.
230
- This allows a client to fetch the first five objects by passing "5" as the
231
- argument to "first", then fetch the total count so it could display "5 of 83",
232
- for example.
233
- """
234
- totalCount: Int
235
-
236
- """
237
- A list of all of the objects returned in the connection. This is a convenience
238
- field provided for quickly exploring the API; rather than querying for
239
- "{ edges { node } }" when no edge data is needed, this field can be be used
240
- instead. Note that when clients like Relay need to fetch the "cursor" field on
241
- the edge to enable efficient pagination, this shortcut cannot be used, and the
242
- full "{ edges { node } }" version should be used instead.
243
- """
244
- vehicles: [Vehicle]
245
- }
246
-
247
- """An edge in a connection."""
248
- type FilmVehiclesEdge {
249
- """The item at the end of the edge"""
250
- node: Vehicle
251
-
252
- """A cursor for use in pagination"""
253
- cursor: String!
254
- }
255
-
256
- """An object with an ID"""
257
- interface Node {
258
- """The id of the object."""
259
- id: ID!
260
- }
261
-
262
- """Information about pagination in a connection."""
263
- type PageInfo {
264
- """When paginating forwards, are there more items?"""
265
- hasNextPage: Boolean!
266
-
267
- """When paginating backwards, are there more items?"""
268
- hasPreviousPage: Boolean!
269
-
270
- """When paginating backwards, the cursor to continue."""
271
- startCursor: String
272
-
273
- """When paginating forwards, the cursor to continue."""
274
- endCursor: String
275
- }
276
-
277
- """A connection to a list of items."""
278
- type PeopleConnection {
279
- """Information to aid in pagination."""
280
- pageInfo: PageInfo!
281
-
282
- """A list of edges."""
283
- edges: [PeopleEdge]
284
-
285
- """
286
- A count of the total number of objects in this connection, ignoring pagination.
287
- This allows a client to fetch the first five objects by passing "5" as the
288
- argument to "first", then fetch the total count so it could display "5 of 83",
289
- for example.
290
- """
291
- totalCount: Int
292
-
293
- """
294
- A list of all of the objects returned in the connection. This is a convenience
295
- field provided for quickly exploring the API; rather than querying for
296
- "{ edges { node } }" when no edge data is needed, this field can be be used
297
- instead. Note that when clients like Relay need to fetch the "cursor" field on
298
- the edge to enable efficient pagination, this shortcut cannot be used, and the
299
- full "{ edges { node } }" version should be used instead.
300
- """
301
- people: [Person]
302
- }
303
-
304
- """An edge in a connection."""
305
- type PeopleEdge {
306
- """The item at the end of the edge"""
307
- node: Person
308
-
309
- """A cursor for use in pagination"""
310
- cursor: String!
311
- }
312
-
313
- """An individual person or character within the Star Wars universe."""
314
- type Person implements Node {
315
- """The name of this person."""
316
- name: String
317
-
318
- """
319
- The birth year of the person, using the in-universe standard of BBY or ABY -
320
- Before the Battle of Yavin or After the Battle of Yavin. The Battle of Yavin is
321
- a battle that occurs at the end of Star Wars episode IV: A New Hope.
322
- """
323
- birthYear: String
324
-
325
- """
326
- The eye color of this person. Will be "unknown" if not known or "n/a" if the
327
- person does not have an eye.
328
- """
329
- eyeColor: String
330
-
331
- """
332
- The gender of this person. Either "Male", "Female" or "unknown",
333
- "n/a" if the person does not have a gender.
334
- """
335
- gender: String
336
-
337
- """
338
- The hair color of this person. Will be "unknown" if not known or "n/a" if the
339
- person does not have hair.
340
- """
341
- hairColor: String
342
-
343
- """The height of the person in centimeters."""
344
- height: Int
345
-
346
- """The mass of the person in kilograms."""
347
- mass: Float
348
-
349
- """The skin color of this person."""
350
- skinColor: String
351
-
352
- """A planet that this person was born on or inhabits."""
353
- homeworld: Planet
354
- filmConnection(after: String, first: Int, before: String, last: Int): PersonFilmsConnection
355
-
356
- """The species that this person belongs to, or null if unknown."""
357
- species: Species
358
- starshipConnection(after: String, first: Int, before: String, last: Int): PersonStarshipsConnection
359
- vehicleConnection(after: String, first: Int, before: String, last: Int): PersonVehiclesConnection
360
-
361
- """The ISO 8601 date format of the time that this resource was created."""
362
- created: String
363
-
364
- """The ISO 8601 date format of the time that this resource was edited."""
365
- edited: String
366
-
367
- """The ID of an object"""
368
- id: ID!
369
- }
370
-
371
- """A connection to a list of items."""
372
- type PersonFilmsConnection {
373
- """Information to aid in pagination."""
374
- pageInfo: PageInfo!
375
-
376
- """A list of edges."""
377
- edges: [PersonFilmsEdge]
378
-
379
- """
380
- A count of the total number of objects in this connection, ignoring pagination.
381
- This allows a client to fetch the first five objects by passing "5" as the
382
- argument to "first", then fetch the total count so it could display "5 of 83",
383
- for example.
384
- """
385
- totalCount: Int
386
-
387
- """
388
- A list of all of the objects returned in the connection. This is a convenience
389
- field provided for quickly exploring the API; rather than querying for
390
- "{ edges { node } }" when no edge data is needed, this field can be be used
391
- instead. Note that when clients like Relay need to fetch the "cursor" field on
392
- the edge to enable efficient pagination, this shortcut cannot be used, and the
393
- full "{ edges { node } }" version should be used instead.
394
- """
395
- films: [Film]
396
- }
397
-
398
- """An edge in a connection."""
399
- type PersonFilmsEdge {
400
- """The item at the end of the edge"""
401
- node: Film
402
-
403
- """A cursor for use in pagination"""
404
- cursor: String!
405
- }
406
-
407
- """A connection to a list of items."""
408
- type PersonStarshipsConnection {
409
- """Information to aid in pagination."""
410
- pageInfo: PageInfo!
411
-
412
- """A list of edges."""
413
- edges: [PersonStarshipsEdge]
414
-
415
- """
416
- A count of the total number of objects in this connection, ignoring pagination.
417
- This allows a client to fetch the first five objects by passing "5" as the
418
- argument to "first", then fetch the total count so it could display "5 of 83",
419
- for example.
420
- """
421
- totalCount: Int
422
-
423
- """
424
- A list of all of the objects returned in the connection. This is a convenience
425
- field provided for quickly exploring the API; rather than querying for
426
- "{ edges { node } }" when no edge data is needed, this field can be be used
427
- instead. Note that when clients like Relay need to fetch the "cursor" field on
428
- the edge to enable efficient pagination, this shortcut cannot be used, and the
429
- full "{ edges { node } }" version should be used instead.
430
- """
431
- starships: [Starship]
432
- }
433
-
434
- """An edge in a connection."""
435
- type PersonStarshipsEdge {
436
- """The item at the end of the edge"""
437
- node: Starship
438
-
439
- """A cursor for use in pagination"""
440
- cursor: String!
441
- }
442
-
443
- """A connection to a list of items."""
444
- type PersonVehiclesConnection {
445
- """Information to aid in pagination."""
446
- pageInfo: PageInfo!
447
-
448
- """A list of edges."""
449
- edges: [PersonVehiclesEdge]
450
-
451
- """
452
- A count of the total number of objects in this connection, ignoring pagination.
453
- This allows a client to fetch the first five objects by passing "5" as the
454
- argument to "first", then fetch the total count so it could display "5 of 83",
455
- for example.
456
- """
457
- totalCount: Int
458
-
459
- """
460
- A list of all of the objects returned in the connection. This is a convenience
461
- field provided for quickly exploring the API; rather than querying for
462
- "{ edges { node } }" when no edge data is needed, this field can be be used
463
- instead. Note that when clients like Relay need to fetch the "cursor" field on
464
- the edge to enable efficient pagination, this shortcut cannot be used, and the
465
- full "{ edges { node } }" version should be used instead.
466
- """
467
- vehicles: [Vehicle]
468
- }
469
-
470
- """An edge in a connection."""
471
- type PersonVehiclesEdge {
472
- """The item at the end of the edge"""
473
- node: Vehicle
474
-
475
- """A cursor for use in pagination"""
476
- cursor: String!
477
- }
478
-
479
- """
480
- A large mass, planet or planetoid in the Star Wars Universe, at the time of
481
- 0 ABY.
482
- """
483
- type Planet implements Node {
484
- """The name of this planet."""
485
- name: String
486
-
487
- """The diameter of this planet in kilometers."""
488
- diameter: Int
489
-
490
- """
491
- The number of standard hours it takes for this planet to complete a single
492
- rotation on its axis.
493
- """
494
- rotationPeriod: Int
495
-
496
- """
497
- The number of standard days it takes for this planet to complete a single orbit
498
- of its local star.
499
- """
500
- orbitalPeriod: Int
501
-
502
- """
503
- A number denoting the gravity of this planet, where "1" is normal or 1 standard
504
- G. "2" is twice or 2 standard Gs. "0.5" is half or 0.5 standard Gs.
505
- """
506
- gravity: String
507
-
508
- """The average population of sentient beings inhabiting this planet."""
509
- population: Float
510
-
511
- """The climates of this planet."""
512
- climates: [String]
513
-
514
- """The terrains of this planet."""
515
- terrains: [String]
516
-
517
- """
518
- The percentage of the planet surface that is naturally occurring water or bodies
519
- of water.
520
- """
521
- surfaceWater: Float
522
- residentConnection(after: String, first: Int, before: String, last: Int): PlanetResidentsConnection
523
- filmConnection(after: String, first: Int, before: String, last: Int): PlanetFilmsConnection
524
-
525
- """The ISO 8601 date format of the time that this resource was created."""
526
- created: String
527
-
528
- """The ISO 8601 date format of the time that this resource was edited."""
529
- edited: String
530
-
531
- """The ID of an object"""
532
- id: ID!
533
- }
534
-
535
- """A connection to a list of items."""
536
- type PlanetFilmsConnection {
537
- """Information to aid in pagination."""
538
- pageInfo: PageInfo!
539
-
540
- """A list of edges."""
541
- edges: [PlanetFilmsEdge]
542
-
543
- """
544
- A count of the total number of objects in this connection, ignoring pagination.
545
- This allows a client to fetch the first five objects by passing "5" as the
546
- argument to "first", then fetch the total count so it could display "5 of 83",
547
- for example.
548
- """
549
- totalCount: Int
550
-
551
- """
552
- A list of all of the objects returned in the connection. This is a convenience
553
- field provided for quickly exploring the API; rather than querying for
554
- "{ edges { node } }" when no edge data is needed, this field can be be used
555
- instead. Note that when clients like Relay need to fetch the "cursor" field on
556
- the edge to enable efficient pagination, this shortcut cannot be used, and the
557
- full "{ edges { node } }" version should be used instead.
558
- """
559
- films: [Film]
560
- }
561
-
562
- """An edge in a connection."""
563
- type PlanetFilmsEdge {
564
- """The item at the end of the edge"""
565
- node: Film
566
-
567
- """A cursor for use in pagination"""
568
- cursor: String!
569
- }
570
-
571
- """A connection to a list of items."""
572
- type PlanetResidentsConnection {
573
- """Information to aid in pagination."""
574
- pageInfo: PageInfo!
575
-
576
- """A list of edges."""
577
- edges: [PlanetResidentsEdge]
578
-
579
- """
580
- A count of the total number of objects in this connection, ignoring pagination.
581
- This allows a client to fetch the first five objects by passing "5" as the
582
- argument to "first", then fetch the total count so it could display "5 of 83",
583
- for example.
584
- """
585
- totalCount: Int
586
-
587
- """
588
- A list of all of the objects returned in the connection. This is a convenience
589
- field provided for quickly exploring the API; rather than querying for
590
- "{ edges { node } }" when no edge data is needed, this field can be be used
591
- instead. Note that when clients like Relay need to fetch the "cursor" field on
592
- the edge to enable efficient pagination, this shortcut cannot be used, and the
593
- full "{ edges { node } }" version should be used instead.
594
- """
595
- residents: [Person]
596
- }
597
-
598
- """An edge in a connection."""
599
- type PlanetResidentsEdge {
600
- """The item at the end of the edge"""
601
- node: Person
602
-
603
- """A cursor for use in pagination"""
604
- cursor: String!
605
- }
606
-
607
- """A connection to a list of items."""
608
- type PlanetsConnection {
609
- """Information to aid in pagination."""
610
- pageInfo: PageInfo!
611
-
612
- """A list of edges."""
613
- edges: [PlanetsEdge]
614
-
615
- """
616
- A count of the total number of objects in this connection, ignoring pagination.
617
- This allows a client to fetch the first five objects by passing "5" as the
618
- argument to "first", then fetch the total count so it could display "5 of 83",
619
- for example.
620
- """
621
- totalCount: Int
622
-
623
- """
624
- A list of all of the objects returned in the connection. This is a convenience
625
- field provided for quickly exploring the API; rather than querying for
626
- "{ edges { node } }" when no edge data is needed, this field can be be used
627
- instead. Note that when clients like Relay need to fetch the "cursor" field on
628
- the edge to enable efficient pagination, this shortcut cannot be used, and the
629
- full "{ edges { node } }" version should be used instead.
630
- """
631
- planets: [Planet]
632
- }
633
-
634
- """An edge in a connection."""
635
- type PlanetsEdge {
636
- """The item at the end of the edge"""
637
- node: Planet
638
-
639
- """A cursor for use in pagination"""
640
- cursor: String!
641
- }
642
-
643
- type Root {
644
- allFilms(after: String, first: Int, before: String, last: Int): FilmsConnection
645
- film(id: ID, filmID: ID): Film
646
- allPeople(after: String, first: Int, before: String, last: Int): PeopleConnection
647
- person(id: ID, personID: ID): Person
648
- allPlanets(after: String, first: Int, before: String, last: Int): PlanetsConnection
649
- planet(id: ID, planetID: ID): Planet
650
- allSpecies(after: String, first: Int, before: String, last: Int): SpeciesConnection
651
- species(id: ID, speciesID: ID): Species
652
- allStarships(after: String, first: Int, before: String, last: Int): StarshipsConnection
653
- starship(id: ID, starshipID: ID): Starship
654
- allVehicles(after: String, first: Int, before: String, last: Int): VehiclesConnection
655
- vehicle(id: ID, vehicleID: ID): Vehicle
656
-
657
- """Fetches an object given its ID"""
658
- node(
659
- """The ID of an object"""
660
- id: ID!
661
- ): Node
662
- }
663
-
664
- """A type of person or character within the Star Wars Universe."""
665
- type Species implements Node {
666
- """The name of this species."""
667
- name: String
668
-
669
- """The classification of this species, such as "mammal" or "reptile"."""
670
- classification: String
671
-
672
- """The designation of this species, such as "sentient"."""
673
- designation: String
674
-
675
- """The average height of this species in centimeters."""
676
- averageHeight: Float
677
-
678
- """The average lifespan of this species in years, null if unknown."""
679
- averageLifespan: Int
680
-
681
- """
682
- Common eye colors for this species, null if this species does not typically
683
- have eyes.
684
- """
685
- eyeColors: [String]
686
-
687
- """
688
- Common hair colors for this species, null if this species does not typically
689
- have hair.
690
- """
691
- hairColors: [String]
692
-
693
- """
694
- Common skin colors for this species, null if this species does not typically
695
- have skin.
696
- """
697
- skinColors: [String]
698
-
699
- """The language commonly spoken by this species."""
700
- language: String
701
-
702
- """A planet that this species originates from."""
703
- homeworld: Planet
704
- personConnection(after: String, first: Int, before: String, last: Int): SpeciesPeopleConnection
705
- filmConnection(after: String, first: Int, before: String, last: Int): SpeciesFilmsConnection
706
-
707
- """The ISO 8601 date format of the time that this resource was created."""
708
- created: String
709
-
710
- """The ISO 8601 date format of the time that this resource was edited."""
711
- edited: String
712
-
713
- """The ID of an object"""
714
- id: ID!
715
- }
716
-
717
- """A connection to a list of items."""
718
- type SpeciesConnection {
719
- """Information to aid in pagination."""
720
- pageInfo: PageInfo!
721
-
722
- """A list of edges."""
723
- edges: [SpeciesEdge]
724
-
725
- """
726
- A count of the total number of objects in this connection, ignoring pagination.
727
- This allows a client to fetch the first five objects by passing "5" as the
728
- argument to "first", then fetch the total count so it could display "5 of 83",
729
- for example.
730
- """
731
- totalCount: Int
732
-
733
- """
734
- A list of all of the objects returned in the connection. This is a convenience
735
- field provided for quickly exploring the API; rather than querying for
736
- "{ edges { node } }" when no edge data is needed, this field can be be used
737
- instead. Note that when clients like Relay need to fetch the "cursor" field on
738
- the edge to enable efficient pagination, this shortcut cannot be used, and the
739
- full "{ edges { node } }" version should be used instead.
740
- """
741
- species: [Species]
742
- }
743
-
744
- """An edge in a connection."""
745
- type SpeciesEdge {
746
- """The item at the end of the edge"""
747
- node: Species
748
-
749
- """A cursor for use in pagination"""
750
- cursor: String!
751
- }
752
-
753
- """A connection to a list of items."""
754
- type SpeciesFilmsConnection {
755
- """Information to aid in pagination."""
756
- pageInfo: PageInfo!
757
-
758
- """A list of edges."""
759
- edges: [SpeciesFilmsEdge]
760
-
761
- """
762
- A count of the total number of objects in this connection, ignoring pagination.
763
- This allows a client to fetch the first five objects by passing "5" as the
764
- argument to "first", then fetch the total count so it could display "5 of 83",
765
- for example.
766
- """
767
- totalCount: Int
768
-
769
- """
770
- A list of all of the objects returned in the connection. This is a convenience
771
- field provided for quickly exploring the API; rather than querying for
772
- "{ edges { node } }" when no edge data is needed, this field can be be used
773
- instead. Note that when clients like Relay need to fetch the "cursor" field on
774
- the edge to enable efficient pagination, this shortcut cannot be used, and the
775
- full "{ edges { node } }" version should be used instead.
776
- """
777
- films: [Film]
778
- }
779
-
780
- """An edge in a connection."""
781
- type SpeciesFilmsEdge {
782
- """The item at the end of the edge"""
783
- node: Film
784
-
785
- """A cursor for use in pagination"""
786
- cursor: String!
787
- }
788
-
789
- """A connection to a list of items."""
790
- type SpeciesPeopleConnection {
791
- """Information to aid in pagination."""
792
- pageInfo: PageInfo!
793
-
794
- """A list of edges."""
795
- edges: [SpeciesPeopleEdge]
796
-
797
- """
798
- A count of the total number of objects in this connection, ignoring pagination.
799
- This allows a client to fetch the first five objects by passing "5" as the
800
- argument to "first", then fetch the total count so it could display "5 of 83",
801
- for example.
802
- """
803
- totalCount: Int
804
-
805
- """
806
- A list of all of the objects returned in the connection. This is a convenience
807
- field provided for quickly exploring the API; rather than querying for
808
- "{ edges { node } }" when no edge data is needed, this field can be be used
809
- instead. Note that when clients like Relay need to fetch the "cursor" field on
810
- the edge to enable efficient pagination, this shortcut cannot be used, and the
811
- full "{ edges { node } }" version should be used instead.
812
- """
813
- people: [Person]
814
- }
815
-
816
- """An edge in a connection."""
817
- type SpeciesPeopleEdge {
818
- """The item at the end of the edge"""
819
- node: Person
820
-
821
- """A cursor for use in pagination"""
822
- cursor: String!
823
- }
824
-
825
- """A single transport craft that has hyperdrive capability."""
826
- type Starship implements Node {
827
- """The name of this starship. The common name, such as "Death Star"."""
828
- name: String
829
-
830
- """
831
- The model or official name of this starship. Such as "T-65 X-wing" or "DS-1
832
- Orbital Battle Station".
833
- """
834
- model: String
835
-
836
- """
837
- The class of this starship, such as "Starfighter" or "Deep Space Mobile
838
- Battlestation"
839
- """
840
- starshipClass: String
841
-
842
- """The manufacturers of this starship."""
843
- manufacturers: [String]
844
-
845
- """The cost of this starship new, in galactic credits."""
846
- costInCredits: Float
847
-
848
- """The length of this starship in meters."""
849
- length: Float
850
-
851
- """The number of personnel needed to run or pilot this starship."""
852
- crew: String
853
-
854
- """The number of non-essential people this starship can transport."""
855
- passengers: String
856
-
857
- """
858
- The maximum speed of this starship in atmosphere. null if this starship is
859
- incapable of atmosphering flight.
860
- """
861
- maxAtmospheringSpeed: Int
862
-
863
- """The class of this starships hyperdrive."""
864
- hyperdriveRating: Float
865
-
866
- """
867
- The Maximum number of Megalights this starship can travel in a standard hour.
868
- A "Megalight" is a standard unit of distance and has never been defined before
869
- within the Star Wars universe. This figure is only really useful for measuring
870
- the difference in speed of starships. We can assume it is similar to AU, the
871
- distance between our Sun (Sol) and Earth.
872
- """
873
- MGLT: Int
874
-
875
- """The maximum number of kilograms that this starship can transport."""
876
- cargoCapacity: Float
877
-
878
- """
879
- The maximum length of time that this starship can provide consumables for its
880
- entire crew without having to resupply.
881
- """
882
- consumables: String
883
- pilotConnection(after: String, first: Int, before: String, last: Int): StarshipPilotsConnection
884
- filmConnection(after: String, first: Int, before: String, last: Int): StarshipFilmsConnection
885
-
886
- """The ISO 8601 date format of the time that this resource was created."""
887
- created: String
888
-
889
- """The ISO 8601 date format of the time that this resource was edited."""
890
- edited: String
891
-
892
- """The ID of an object"""
893
- id: ID!
894
- }
895
-
896
- """A connection to a list of items."""
897
- type StarshipFilmsConnection {
898
- """Information to aid in pagination."""
899
- pageInfo: PageInfo!
900
-
901
- """A list of edges."""
902
- edges: [StarshipFilmsEdge]
903
-
904
- """
905
- A count of the total number of objects in this connection, ignoring pagination.
906
- This allows a client to fetch the first five objects by passing "5" as the
907
- argument to "first", then fetch the total count so it could display "5 of 83",
908
- for example.
909
- """
910
- totalCount: Int
911
-
912
- """
913
- A list of all of the objects returned in the connection. This is a convenience
914
- field provided for quickly exploring the API; rather than querying for
915
- "{ edges { node } }" when no edge data is needed, this field can be be used
916
- instead. Note that when clients like Relay need to fetch the "cursor" field on
917
- the edge to enable efficient pagination, this shortcut cannot be used, and the
918
- full "{ edges { node } }" version should be used instead.
919
- """
920
- films: [Film]
921
- }
922
-
923
- """An edge in a connection."""
924
- type StarshipFilmsEdge {
925
- """The item at the end of the edge"""
926
- node: Film
927
-
928
- """A cursor for use in pagination"""
929
- cursor: String!
930
- }
931
-
932
- """A connection to a list of items."""
933
- type StarshipPilotsConnection {
934
- """Information to aid in pagination."""
935
- pageInfo: PageInfo!
936
-
937
- """A list of edges."""
938
- edges: [StarshipPilotsEdge]
939
-
940
- """
941
- A count of the total number of objects in this connection, ignoring pagination.
942
- This allows a client to fetch the first five objects by passing "5" as the
943
- argument to "first", then fetch the total count so it could display "5 of 83",
944
- for example.
945
- """
946
- totalCount: Int
947
-
948
- """
949
- A list of all of the objects returned in the connection. This is a convenience
950
- field provided for quickly exploring the API; rather than querying for
951
- "{ edges { node } }" when no edge data is needed, this field can be be used
952
- instead. Note that when clients like Relay need to fetch the "cursor" field on
953
- the edge to enable efficient pagination, this shortcut cannot be used, and the
954
- full "{ edges { node } }" version should be used instead.
955
- """
956
- pilots: [Person]
957
- }
958
-
959
- """An edge in a connection."""
960
- type StarshipPilotsEdge {
961
- """The item at the end of the edge"""
962
- node: Person
963
-
964
- """A cursor for use in pagination"""
965
- cursor: String!
966
- }
967
-
968
- """A connection to a list of items."""
969
- type StarshipsConnection {
970
- """Information to aid in pagination."""
971
- pageInfo: PageInfo!
972
-
973
- """A list of edges."""
974
- edges: [StarshipsEdge]
975
-
976
- """
977
- A count of the total number of objects in this connection, ignoring pagination.
978
- This allows a client to fetch the first five objects by passing "5" as the
979
- argument to "first", then fetch the total count so it could display "5 of 83",
980
- for example.
981
- """
982
- totalCount: Int
983
-
984
- """
985
- A list of all of the objects returned in the connection. This is a convenience
986
- field provided for quickly exploring the API; rather than querying for
987
- "{ edges { node } }" when no edge data is needed, this field can be be used
988
- instead. Note that when clients like Relay need to fetch the "cursor" field on
989
- the edge to enable efficient pagination, this shortcut cannot be used, and the
990
- full "{ edges { node } }" version should be used instead.
991
- """
992
- starships: [Starship]
993
- }
994
-
995
- """An edge in a connection."""
996
- type StarshipsEdge {
997
- """The item at the end of the edge"""
998
- node: Starship
999
-
1000
- """A cursor for use in pagination"""
1001
- cursor: String!
1002
- }
1003
-
1004
- """A single transport craft that does not have hyperdrive capability"""
1005
- type Vehicle implements Node {
1006
- """
1007
- The name of this vehicle. The common name, such as "Sand Crawler" or "Speeder
1008
- bike".
1009
- """
1010
- name: String
1011
-
1012
- """
1013
- The model or official name of this vehicle. Such as "All-Terrain Attack
1014
- Transport".
1015
- """
1016
- model: String
1017
-
1018
- """The class of this vehicle, such as "Wheeled" or "Repulsorcraft"."""
1019
- vehicleClass: String
1020
-
1021
- """The manufacturers of this vehicle."""
1022
- manufacturers: [String]
1023
-
1024
- """The cost of this vehicle new, in Galactic Credits."""
1025
- costInCredits: Float
1026
-
1027
- """The length of this vehicle in meters."""
1028
- length: Float
1029
-
1030
- """The number of personnel needed to run or pilot this vehicle."""
1031
- crew: String
1032
-
1033
- """The number of non-essential people this vehicle can transport."""
1034
- passengers: String
1035
-
1036
- """The maximum speed of this vehicle in atmosphere."""
1037
- maxAtmospheringSpeed: Int
1038
-
1039
- """The maximum number of kilograms that this vehicle can transport."""
1040
- cargoCapacity: Float
1041
-
1042
- """
1043
- The maximum length of time that this vehicle can provide consumables for its
1044
- entire crew without having to resupply.
1045
- """
1046
- consumables: String
1047
- pilotConnection(after: String, first: Int, before: String, last: Int): VehiclePilotsConnection
1048
- filmConnection(after: String, first: Int, before: String, last: Int): VehicleFilmsConnection
1049
-
1050
- """The ISO 8601 date format of the time that this resource was created."""
1051
- created: String
1052
-
1053
- """The ISO 8601 date format of the time that this resource was edited."""
1054
- edited: String
1055
-
1056
- """The ID of an object"""
1057
- id: ID!
1058
- }
1059
-
1060
- """A connection to a list of items."""
1061
- type VehicleFilmsConnection {
1062
- """Information to aid in pagination."""
1063
- pageInfo: PageInfo!
1064
-
1065
- """A list of edges."""
1066
- edges: [VehicleFilmsEdge]
1067
-
1068
- """
1069
- A count of the total number of objects in this connection, ignoring pagination.
1070
- This allows a client to fetch the first five objects by passing "5" as the
1071
- argument to "first", then fetch the total count so it could display "5 of 83",
1072
- for example.
1073
- """
1074
- totalCount: Int
1075
-
1076
- """
1077
- A list of all of the objects returned in the connection. This is a convenience
1078
- field provided for quickly exploring the API; rather than querying for
1079
- "{ edges { node } }" when no edge data is needed, this field can be be used
1080
- instead. Note that when clients like Relay need to fetch the "cursor" field on
1081
- the edge to enable efficient pagination, this shortcut cannot be used, and the
1082
- full "{ edges { node } }" version should be used instead.
1083
- """
1084
- films: [Film]
1085
- }
1086
-
1087
- """An edge in a connection."""
1088
- type VehicleFilmsEdge {
1089
- """The item at the end of the edge"""
1090
- node: Film
1091
-
1092
- """A cursor for use in pagination"""
1093
- cursor: String!
1094
- }
1095
-
1096
- """A connection to a list of items."""
1097
- type VehiclePilotsConnection {
1098
- """Information to aid in pagination."""
1099
- pageInfo: PageInfo!
1100
-
1101
- """A list of edges."""
1102
- edges: [VehiclePilotsEdge]
1103
-
1104
- """
1105
- A count of the total number of objects in this connection, ignoring pagination.
1106
- This allows a client to fetch the first five objects by passing "5" as the
1107
- argument to "first", then fetch the total count so it could display "5 of 83",
1108
- for example.
1109
- """
1110
- totalCount: Int
1111
-
1112
- """
1113
- A list of all of the objects returned in the connection. This is a convenience
1114
- field provided for quickly exploring the API; rather than querying for
1115
- "{ edges { node } }" when no edge data is needed, this field can be be used
1116
- instead. Note that when clients like Relay need to fetch the "cursor" field on
1117
- the edge to enable efficient pagination, this shortcut cannot be used, and the
1118
- full "{ edges { node } }" version should be used instead.
1119
- """
1120
- pilots: [Person]
1121
- }
1122
-
1123
- """An edge in a connection."""
1124
- type VehiclePilotsEdge {
1125
- """The item at the end of the edge"""
1126
- node: Person
1127
-
1128
- """A cursor for use in pagination"""
1129
- cursor: String!
1130
- }
1131
-
1132
- """A connection to a list of items."""
1133
- type VehiclesConnection {
1134
- """Information to aid in pagination."""
1135
- pageInfo: PageInfo!
1136
-
1137
- """A list of edges."""
1138
- edges: [VehiclesEdge]
1139
-
1140
- """
1141
- A count of the total number of objects in this connection, ignoring pagination.
1142
- This allows a client to fetch the first five objects by passing "5" as the
1143
- argument to "first", then fetch the total count so it could display "5 of 83",
1144
- for example.
1145
- """
1146
- totalCount: Int
1147
-
1148
- """
1149
- A list of all of the objects returned in the connection. This is a convenience
1150
- field provided for quickly exploring the API; rather than querying for
1151
- "{ edges { node } }" when no edge data is needed, this field can be be used
1152
- instead. Note that when clients like Relay need to fetch the "cursor" field on
1153
- the edge to enable efficient pagination, this shortcut cannot be used, and the
1154
- full "{ edges { node } }" version should be used instead.
1155
- """
1156
- vehicles: [Vehicle]
1157
- }
1158
-
1159
- """An edge in a connection."""
1160
- type VehiclesEdge {
1161
- """The item at the end of the edge"""
1162
- node: Vehicle
1163
-
1164
- """A cursor for use in pagination"""
1165
- cursor: String!
1166
- }