forked from aws-samples/aws-serverless-airline-booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-queries-mutations.gql
130 lines (119 loc) · 3 KB
/
sample-queries-mutations.gql
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
## Add a bunch of flights
### Aviation-edge Open API could come handy in here as an ETL process
mutation flight1 {
createFlight(input:{
departureDate: "2019-05-08T08:00+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-05-08T10:15+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 100,
ticketCurrency: "EUR",
flightNumber: 1830,
seatAllocation: 10
}) {
id
}
}
mutation flight2 {
createFlight(input:{
departureDate: "2019-01-16T10:30+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-01-16T12:45+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 200,
ticketCurrency: "EUR",
flightNumber: 1813,
seatAllocation: 2
}) {
id
}
}
mutation flight3 {
createFlight(input:{
departureDate: "2019-01-16T12:00+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-01-16T14:15+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 1000,
ticketCurrency: "EUR",
flightNumber: 1814,
seatAllocation: 2
}) {
id
}
}
mutation flight4 {
createFlight(input:{
departureDate: "2019-01-16T17:00+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-01-16T19:15+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 500,
ticketCurrency: "EUR",
flightNumber: 1815,
seatAllocation: 2
}) {
id
}
}
## Fetch all flights leaving at 10am
query {
listFlights(limit:2, filter: {
departureDate: {
beginsWith: "2019-01-16T10"
}
}){
items {
id,
departureDate
}
}
}
## Make a booking
###
mutation {
createBooking(input:{
status:UNCONFIRMED,
paymentToken: "adasdasd",
bookingOutboundFlightId: "flight-UUID-here"
}) {
id
}
}
## Fetch a booking
### TODO: departureCity in mock will no longer be needed
query {
getBooking(id:"b46baf62-f9fe-4b0b-b2e3-741f5e11589d")
# selection set
{
id
outboundFlight {
id
departureDate
}
}
}