This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
schema.graphql
3731 lines (3017 loc) · 93.8 KB
/
schema.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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# @generated SignedSource<<24af02208aafac8c7267eb81aab2d104>>
schema {
query: RootQuery
mutation: RootMutation
}
type AdditionalBaggage {
price: Price
"""Number of baggage."""
quantity: Int
}
type Address {
city: String
"""Contains street and number."""
street: String
zip: String
}
type Airline {
"""2-letter IATA code of airline."""
code: String
"""Airline is low cost carrier."""
isLowCost: Boolean @deprecated(reason: "This field has been deprecated by BE and doesn't have any replacement.")
logoUrl: String
name: String
}
type AirportArrivalTimelineEvent implements TimelineEvent {
"""Location of departure"""
location: RouteStop
"""Time of appearance in the timeline."""
timestamp: DateTime
}
"""
Information about hotel availability during selected time period from Stay22 api.
"""
type AllAvailableStay22Hotel implements AllHotelsInterface {
address: Address
"""Location of the hotel."""
coordinates: Coordinates
"""Hotel distance from the center in Km."""
distanceFromCenter: Float
"""Stay 22 id"""
hotelId: ID
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
"""Main photo of the hotel."""
mainPhoto: HotelPhoto
"""
Total price for all guests and nights and in the hotel. (including VAT)
"""
money: Money
"""Name of the hotel."""
name: String
"""
Total price for all guests and nights and in the hotel. (including VAT)
"""
price: Price @deprecated(reason: "Use money type instead")
rating: HotelRating
review: HotelReview
}
"""A connection to a list of items."""
type AllAvailableStay22HotelConnection {
"""Name of the closest city"""
cityName: String
"""A list of edges."""
edges: [AllAvailableStay22HotelEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""Meta data for the search"""
stats: HotelSearchMeta
}
"""An edge in a connection."""
type AllAvailableStay22HotelEdge {
"""A cursor for use in pagination"""
cursor: String!
"""The item at the end of the edge"""
node: AllAvailableStay22Hotel
}
type AllCustomerSupportNumbers {
"""Premium customer support phone numbers"""
premiumCustomerSupportNumbers: [CustomerSupportNumber]
"""Standard customer support phone numbers"""
standardCustomerSupportNumbers: [CustomerSupportNumber]
}
"""Information about hotel availability during selected time period."""
type AllHotelAvailabilityHotel implements AllHotelsInterface {
address: Address
"""Location of the hotel."""
coordinates: Coordinates
"""Hotel distance from the center in Km."""
distanceFromCenter: Float
"""ID of hotel"""
hotelId: ID
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
"""Main photo of the hotel."""
mainPhoto: HotelPhoto
"""
Total price for all guests and nights and in the hotel. (including VAT)
"""
money: Money
"""Name of the hotel."""
name: String
"""
Total price for all guests and nights and in the hotel. (including VAT)
"""
price: Price @deprecated(reason: "Use money type instead")
rating: HotelRating
review: HotelReview
}
"""A connection to a list of items."""
type AllHotelAvailabilityHotelConnection {
"""Name of the closest city"""
cityName: String
"""A list of edges."""
edges: [AllHotelAvailabilityHotelEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
stats: HotelAvailabilityStats
}
"""An edge in a connection."""
type AllHotelAvailabilityHotelEdge {
"""A cursor for use in pagination"""
cursor: String!
"""The item at the end of the edge"""
node: AllHotelAvailabilityHotel
}
interface AllHotelsInterface {
address: Address
coordinates: Coordinates
distanceFromCenter: Float
hotelId: ID
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
mainPhoto: HotelPhoto
money: Money
name: String
price: Price
rating: HotelRating
review: HotelReview
}
type AllowedBaggage {
"""Extra and overweight baggage."""
additionalBaggage: [AdditionalBaggage]
"""Small carry-on luggage."""
cabin: [Baggage]
"""Baggage checked online."""
checked: [Baggage]
}
"""List of ancillaries that are ordered with booking"""
type Ancillaries {
airhelpPlus: [AncillaryPerBooking]
blueribbonBags: [AncillaryPerSegmentPerPassenger]
fastTrack: [AncillaryPerSegmentPerPassenger]
}
input Ancillaries3rdCarrier {
operational: Ancillaries3rdOperational
}
input Ancillaries3rdItinerary {
"""
Arrival time of the segment, its in timestamp format "1550042100"
"""
arrival: Int
"""Carrier of a particular segment"""
carrier: Ancillaries3rdCarrier
carrier_segment_code: String
"""
Departure time of the segment, its in timestamp format "1550042100"
"""
departure: Int
"""Destination of a segment ex. "TXL", "MAD" etc."""
destinationCode: String
"""Segment code"""
segment_code: String
"""
Source of a segment "TXL", "MAD"
"""
sourceCode: String
vehicle: Ancillaries3rdVehicle
}
"""Ancillaries3rd offers for the booking"""
type Ancillaries3rdOffers {
data: Ancillaries3rdOffersData
name: String
service: String
type: Int
}
"""A connection to a list of items."""
type Ancillaries3rdOffersConnection {
"""A list of edges."""
edges: [Ancillaries3rdOffersEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
type Ancillaries3rdOffersData {
is_applicable: Boolean
price_info: Ancillaries3rdOffersPriceInfo
}
"""An edge in a connection."""
type Ancillaries3rdOffersEdge {
"""A cursor for use in pagination"""
cursor: String!
"""The item at the end of the edge"""
node: Ancillaries3rdOffers
}
type Ancillaries3rdOffersPriceInfo {
base_price: Float
currency: String
service_fee: Float
}
input Ancillaries3rdOperational {
"""Carrier segment code"""
code: String
}
input Ancillaries3rdServices {
"""Name of the requested ancillary"""
service: AvailableServicesEnums
}
input Ancillaries3rdVehicle {
"""Segment vehicle type"""
type: String
}
"""Ancillary document with url to document"""
type AncillaryDocument {
url: String
}
enum AncillaryOrderStateEnum {
DONE
PROCESSING
}
type AncillaryPerBooking {
extra_id: Int
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
orderState: AncillaryOrderStateEnum
price: AncillaryPrice
thirdPartyAncillaryOrderId: Int
}
type AncillaryPerSegmentPerPassenger {
attachments: [AncillaryDocument]
extraId: Int
id: Int
items: [PassengerSegment]
orderState: AncillaryOrderStateEnum
thirdPartyAncillaryOrderId: Int
}
type AncillaryPrice {
amount: String
base: String
currency: String
merchant: String
service: String
service_flat: String
}
input AreaInput {
"""Bottom right coordinates of the area."""
bottomRight: CoordinatesInput!
"""Top left coordinates of the area."""
topLeft: CoordinatesInput!
}
type ArrivalTimelineEvent implements TimelineEvent {
"""Location of arrival"""
location: RouteStop
"""Time of appearance in the timeline."""
timestamp: DateTime
}
enum AttachmentsFor {
FAST_TRACK
}
enum availabilityStatus {
AT_AIRPORT
AVAILABLE
IN_FUTURE
OTHER
}
input AvailableHotelOptionsInput {
"""Three-letters ISO 4217 currency code, e.g. EUR or USD"""
currency: Currency
"""Order results by this input type"""
orderBy: OrderBy
}
input AvailableHotelSearchInput {
checkin: Date!
checkout: Date!
"""Opaque hotel ID."""
hotelId: ID!
language: Language
roomsConfiguration: [RoomsConfiguration!]!
}
enum AvailableServicesEnums {
airhelp_plus
axa
blueribbon_bags
cover_more
fast_track
paid_checkin
}
type Baggage {
category: BaggageCategory
height: Int
length: Int
note: String
weight: Int
width: Int
}
enum BaggageCategory {
CABIN_BAG
CHECKED
PERSONAL_ITEM
}
type BoardingPass {
"""Boarding pass availability status"""
availabilityStatus: availabilityStatus
"""The date when the boarding pass will be available for download"""
availableAt: Date
boardingPassUrl: String
flightNumber: String
"""The leg for the boarding pass"""
leg: Leg
"""pkpasses connected to the boarding pass"""
pkpasses: [Pkpass]
}
type BoardingTimelineEvent implements TimelineEvent {
"""Terminal at which boarding is done"""
terminal: String
"""Time of appearance in the timeline."""
timestamp: DateTime
}
type BookedFlightTimelineEvent implements TimelineEvent {
"""Location of arrival"""
location: RouteStop
"""Time of appearance in the timeline."""
timestamp: DateTime
}
type BookedService {
"""Type of booked service"""
category: BookedServiceCategory
"""Status of booked service"""
status: BookedServiceStatus
}
enum BookedServiceCategory {
ALLOCATED_SEATING
BAGS
EXTRAS_BAGS
EXTRAS_CHANGE_FLIGHT
EXTRAS_OTHER
EXTRAS_PASSENGER_DETAILS_CHANGE
FLIGHTS
MEALS_ON_BOARD
MUSICAL_EQUIPMENT
PRICE_CHANGE
SPECIAL_ASSISTANCE
SPORTS_EQUIPMENT
TRAVELLING_WITH_PETS
UPDATE_INSURANCES
}
enum BookedServiceStatus {
CLOSED
CONFIRMED
OPEN
PENDING
}
"""
DEPRECATED! Use "customerBookings" query instead. That query will return
interface instead so you don't have to work with this generic type.
"""
type Booking {
allowedBaggage: AllowedBaggage
arrival: RouteStop @deprecated(reason: "Use \"oneWay\", \"return\" & \"multicity\" fields to retrieve booking info.")
"""Static assets related to this booking."""
assets: BookingAssets
authToken: String @deprecated(reason: "Use correctly named \"simpleToken\" arg instead.")
"""All services provided directly by Kiwi.com."""
availableServices: Services
"""All services provided via whitelabels."""
availableWhitelabeledServices: WhitelabeledServices
baggage: [BookingBaggage]
bookedServices: [BookedService]
"""Date of the booking creation"""
bookingDate: Date
"""List of carriers involved in the booking."""
carriers: [Carrier]
"""Check-in information (status, dates)"""
checkIn: CheckIn
contactDetails: BookingContactDetails
"""Support provided by CS for booking."""
customerSupport: BookingCustomerSupport
"""Unique number identifying the booking in communication with support."""
databaseId: Int @deprecated(reason: "Use field \"id\" directly (with opaque parameter)")
departure: RouteStop @deprecated(reason: "Use \"oneWay\", \"return\" & \"multicity\" fields to retrieve booking info.")
destinationImageUrl(dimensions: BookingDestinationImageDimensions = _600x600): String
"""
You can use this link to access one particular booking directly WITHOUT PASSWORD. Use it carefully.
"""
directAccessURL(deeplinkTo: DirectAccessURLValues): String
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
insurancePrices: [InsurancePrice]
isPastBooking: Boolean
"""Flight segments, e.g. stopover, change of aircraft, etc."""
legs: [Leg] @deprecated(reason: "Use \"oneWay\", \"return\" & \"multicity\" fields to retrieve booking info.")
multicity: BookingMulticity
oneWay: BookingOneWay
onlineCheckinIsAvailable: Boolean
passengerCount: Int
passengers: [Passenger]
"""Total price of the whole booking."""
price: Price
return: BookingReturn
"""
Simple token that lets you fetch a unique booking without authorization.
"""
simpleToken: String
status: BookingStatus
type: BookingType @deprecated(reason: "Manual type is not necessary. Use \"__typename\" instead.")
"""Nearest upcoming leg by arrival time."""
upcomingLeg(
"""Filter out only legs with specified guarantee."""
guarantee: CoveredBy
): Leg
}
type BookingAssets {
"""Boarding passes for flights in this booking"""
boardingPasses: [BoardingPass]
"""URL of the invoice."""
invoiceUrl: String
"""
URL of the electronic ticket. Ticket may not be available yet (returns null).
"""
ticketUrl: String
}
"""
Query parameters to fetch single booking for authenticated user. Send
"Authorization" or "KW-Auth-Token" HTTP header when querying for booking with
these arguments.
"""
input BookingAuthInput {
"""Booking ID"""
bid: Int!
}
type BookingBaggage {
bag: Baggage
passengers: [Passenger]
quantity: Int
}
type BookingConfirmedTimelineEvent implements TimelineEvent {
"""Time of appearance in the timeline."""
timestamp: DateTime
}
"""Contact details related to the booking"""
type BookingContactDetails {
email: String
"""Documentation and information about the passanger."""
passenger: Passenger
phone: String
}
type BookingCustomerSupport {
CSPhoneNumbers: CSPhoneNumbersResponse
"""
Is Guarantee Chat allowed to provide direct contact to customer service.
"""
hasGuaranteeChat: Boolean
"""
Localised phone number of customer service. Null if not available for that locale.
"""
phoneNumber: String @deprecated(reason: "Use \"CSPhoneNumbers\" field instead.")
}
enum BookingDestinationImageDimensions {
_1200x628
_1280x720
_220x165
_275x250
_300x165
_375x165
_600x330
_600x600
_610x251
}
type BookingIdentity {
affiliateId: String
"""Current balance of Kiwi.com credits by currency."""
balances: [Money]
"""Discounts for booking payments in % from base price."""
discounts: BookingIdentityDiscounts
searchApiToken: String
}
type BookingIdentityDiscounts {
"""Discount in % from base price when using card."""
card: Int
"""Discount in % from base price when using Kiwi.com credits."""
credits: Int
}
interface BookingInterface {
allowedBaggage: AllowedBaggage
"""Static assets related to this booking."""
assets: BookingAssets
authToken: String @deprecated(reason: "Use correctly named \"simpleToken\" arg instead.")
"""All services provided directly by Kiwi.com."""
availableServices: Services
"""All services provided via whitelabels."""
availableWhitelabeledServices: WhitelabeledServices
baggage: [BookingBaggage]
bookedServices: [BookedService]
"""Date of the booking creation"""
bookingDate: Date
"""List of carriers involved in the booking."""
carriers: [Carrier]
"""Check-in information (status, dates)"""
checkIn: CheckIn
contactDetails: BookingContactDetails
"""Support provided by CS for booking."""
customerSupport: BookingCustomerSupport
"""Unique number identifying the booking in communication with support."""
databaseId: Int @deprecated(reason: "Use field \"id\" directly (with opaque parameter)")
destinationImageUrl(dimensions: BookingDestinationImageDimensions = _600x600): String
"""
You can use this link to access one particular booking directly WITHOUT PASSWORD. Use it carefully.
"""
directAccessURL(deeplinkTo: DirectAccessURLValues): String
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
insurancePrices: [InsurancePrice]
isPastBooking: Boolean
onlineCheckinIsAvailable: Boolean
passengerCount: Int
passengers: [Passenger]
"""Total price of the whole booking."""
price: Price
"""
Simple token that lets you fetch a unique booking without authorization.
"""
simpleToken: String
status: BookingStatus
type: BookingType @deprecated(reason: "Manual type is not necessary. Use \"__typename\" instead.")
"""Nearest upcoming leg by arrival time."""
upcomingLeg(
"""Filter out only legs with specified guarantee."""
guarantee: CoveredBy
): Leg
}
"""A connection to a list of items."""
type BookingInterfaceConnection {
"""A list of edges."""
edges: [BookingInterfaceEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type BookingInterfaceEdge {
"""A cursor for use in pagination"""
cursor: String!
"""The item at the end of the edge"""
node: BookingInterface
}
type BookingMulticity implements BookingInterface & Node {
allowedBaggage: AllowedBaggage
"""Static assets related to this booking."""
assets: BookingAssets
authToken: String @deprecated(reason: "Use correctly named \"simpleToken\" arg instead.")
"""All services provided directly by Kiwi.com."""
availableServices: Services
"""All services provided via whitelabels."""
availableWhitelabeledServices: WhitelabeledServices
baggage: [BookingBaggage]
bookedServices: [BookedService]
"""Date of the booking creation"""
bookingDate: Date
"""List of carriers involved in the booking."""
carriers: [Carrier]
"""Check-in information (status, dates)"""
checkIn: CheckIn
contactDetails: BookingContactDetails
"""Support provided by CS for booking."""
customerSupport: BookingCustomerSupport
"""Unique number identifying the booking in communication with support."""
databaseId: Int @deprecated(reason: "Use field \"id\" directly (with opaque parameter)")
destinationImageUrl(dimensions: BookingDestinationImageDimensions = _600x600): String
"""
You can use this link to access one particular booking directly WITHOUT PASSWORD. Use it carefully.
"""
directAccessURL(deeplinkTo: DirectAccessURLValues): String
"""Final destination."""
end: RouteStop
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
insurancePrices: [InsurancePrice]
isPastBooking: Boolean
onlineCheckinIsAvailable: Boolean
passengerCount: Int
passengers: [Passenger]
"""Total price of the whole booking."""
price: Price
"""
Simple token that lets you fetch a unique booking without authorization.
"""
simpleToken: String
"""Initial origin."""
start: RouteStop
status: BookingStatus
"""List of trips in each multicity segment."""
trips: [Trip]
type: BookingType @deprecated(reason: "Manual type is not necessary. Use \"__typename\" instead.")
"""Nearest upcoming leg by arrival time."""
upcomingLeg(
"""Filter out only legs with specified guarantee."""
guarantee: CoveredBy
): Leg
}
"""
Booking with simple trip from origin to destination, with possible stopovers.
"""
type BookingOneWay implements BookingInterface & Node {
allowedBaggage: AllowedBaggage
"""Static assets related to this booking."""
assets: BookingAssets
authToken: String @deprecated(reason: "Use correctly named \"simpleToken\" arg instead.")
"""All services provided directly by Kiwi.com."""
availableServices: Services
"""All services provided via whitelabels."""
availableWhitelabeledServices: WhitelabeledServices
baggage: [BookingBaggage]
bookedServices: [BookedService]
"""Date of the booking creation"""
bookingDate: Date
"""List of carriers involved in the booking."""
carriers: [Carrier]
"""Check-in information (status, dates)"""
checkIn: CheckIn
contactDetails: BookingContactDetails
"""Support provided by CS for booking."""
customerSupport: BookingCustomerSupport
"""Unique number identifying the booking in communication with support."""
databaseId: Int @deprecated(reason: "Use field \"id\" directly (with opaque parameter)")
destinationImageUrl(dimensions: BookingDestinationImageDimensions = _600x600): String
"""
You can use this link to access one particular booking directly WITHOUT PASSWORD. Use it carefully.
"""
directAccessURL(deeplinkTo: DirectAccessURLValues): String
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
insurancePrices: [InsurancePrice]
isPastBooking: Boolean
onlineCheckinIsAvailable: Boolean
passengerCount: Int
passengers: [Passenger]
"""Total price of the whole booking."""
price: Price
"""
Simple token that lets you fetch a unique booking without authorization.
"""
simpleToken: String
status: BookingStatus
trip: Trip
type: BookingType @deprecated(reason: "Manual type is not necessary. Use \"__typename\" instead.")
"""Nearest upcoming leg by arrival time."""
upcomingLeg(
"""Filter out only legs with specified guarantee."""
guarantee: CoveredBy
): Leg
}
"""Booking with return trip. A <-> B"""
type BookingReturn implements BookingInterface & Node {
allowedBaggage: AllowedBaggage
"""Static assets related to this booking."""
assets: BookingAssets
authToken: String @deprecated(reason: "Use correctly named \"simpleToken\" arg instead.")
"""All services provided directly by Kiwi.com."""
availableServices: Services
"""All services provided via whitelabels."""
availableWhitelabeledServices: WhitelabeledServices
baggage: [BookingBaggage]
bookedServices: [BookedService]
"""Date of the booking creation"""
bookingDate: Date
"""List of carriers involved in the booking."""
carriers: [Carrier]
"""Check-in information (status, dates)"""
checkIn: CheckIn
contactDetails: BookingContactDetails
"""Support provided by CS for booking."""
customerSupport: BookingCustomerSupport
"""Unique number identifying the booking in communication with support."""
databaseId: Int @deprecated(reason: "Use field \"id\" directly (with opaque parameter)")
destinationImageUrl(dimensions: BookingDestinationImageDimensions = _600x600): String
"""
You can use this link to access one particular booking directly WITHOUT PASSWORD. Use it carefully.
"""
directAccessURL(deeplinkTo: DirectAccessURLValues): String
"""
The globally unique ID of an object. You can unmask this ID to get original
value but please note that this unmasked ID is not globally unique anymore and
therefore it cannot be used as a cache key.
"""
id(opaque: Boolean = true): ID!
"""Return trip back from destination to origin."""
inbound: Trip
insurancePrices: [InsurancePrice]
isPastBooking: Boolean
onlineCheckinIsAvailable: Boolean
"""Trip from origin to destination."""
outbound: Trip
passengerCount: Int
passengers: [Passenger]
"""Total price of the whole booking."""
price: Price
"""
Simple token that lets you fetch a unique booking without authorization.
"""
simpleToken: String
status: BookingStatus
type: BookingType @deprecated(reason: "Manual type is not necessary. Use \"__typename\" instead.")
"""Nearest upcoming leg by arrival time."""
upcomingLeg(
"""Filter out only legs with specified guarantee."""
guarantee: CoveredBy
): Leg
}
"""Query parameters to fetch single booking without user authentication."""
input BookingSimpleTokenInput {
"""Booking ID"""
bid: Int!
brand: String!
"""Simple token enabling to access single booking without Authentication."""
simpleToken: String!
}
enum BookingStatus {
CANCELLED @deprecated(reason: "Never valid value for Booking Status, only for Booking Extra Status")
CLOSED @deprecated(reason: "Never valid value for Booking Status, only for Booking Extra Status")
CONFIRMED
DELETED @deprecated(reason: "Never valid value for Booking Status, only for Booking Extra Status")
EXPIRED @deprecated(reason: "Never valid value for Booking Status, only for Booking Extra Status")
IN_PROCESS
NEW @deprecated(reason: "Never valid value for Booking Status, only for Booking Extra Status")
PENDING @deprecated(reason: "Never valid value for Booking Status, only for Booking Extra Status")
REFUNDED
}
type BookingTimeline {
"""List of events of the Bookingtimeline"""
events: [TimelineEvent]
}
enum BookingType {
MULTICITY
ONE_WAY
RETURN
}
"""String code of Kiwi.com partner or "kiwicom"."""
scalar Brand
type CarRentalService {
relevantCities: [CarRentalServiceRelevantCities]
}
type CarRentalServiceRelevantCities {
location: Location
whitelabelURL: String
}
type Carrier {
"""Unique code of the carrier, IATA code for airlines."""
code: String
"""The ID of an object"""
id: ID!
"""Indicates whether it is low cost carrier."""
isLowCost: Boolean @deprecated(reason: "This field has been deprecated by BE and doesn't have any replacement.")
name: String
}
type CheckEmailResponse {
result: CheckEmailResult
}