forked from aws-samples/aws-serverless-airline-booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-queries-mutations.gql
151 lines (138 loc) · 3.4 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
## Add a bunch of flights for December 2nd 2019 (year-month-day)
## auth user must be Admin
mutation flight1 {
createFlight(input:{
departureDate: "2019-12-02T08:00+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-12-02T10:15+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 100,
ticketCurrency: "EUR",
flightNumber: 1830,
seatCapacity: 10
}) {
id
}
}
mutation flight2 {
createFlight(input:{
departureDate: "2019-12-02T10:30+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-12-02T12:45+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 200,
ticketCurrency: "EUR",
flightNumber: 1813,
seatCapacity: 2
}) {
id
}
}
mutation flight3 {
createFlight(input:{
departureDate: "2019-12-02T12:00+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-12-02T14:15+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 1000,
ticketCurrency: "EUR",
flightNumber: 1814,
seatCapacity: 2
}) {
id
}
}
mutation flight4 {
createFlight(input:{
departureDate: "2019-12-02T17:00+0000",
departureAirportCode: "LGW",
departureAirportName: "London Gatwick",
departureCity: "London",
departureLocale: "Europe/London",
arrivalDate: "2019-12-02T19:15+0000",
arrivalAirportCode: "MAD",
arrivalAirportName: "Madrid Barajas",
arrivalCity: "Madrid",
arrivalLocale: "Europe/Madrid",
ticketPrice: 500,
ticketCurrency: "EUR",
flightNumber: 1815,
seatCapacity: 2
}) {
id
}
}
## Fetch all flights leaving at 10am - That uses a SCAN operation behind the scenes
query {
listFlights(limit:2, filter: {
departureDate: {
beginsWith: "2019-12-02T10"
}
}){
items {
id,
departureDate
}
}
}
## Fetch all flights to Madrid from London Gatwick - That uses a QUERY operation behind the scenes
query {
getFlightBySchedule(
arrivalAirportCodeDepartureDate: {
beginsWith: {
arrivalAirportCode: "MAD",
departureDate: "2019-11-03"
}
},
departureAirportCode: "LGW"
)
{
nextToken
items {
id
departureDate
}
}
}
## Make a booking
###
mutation {
# auth user must be Admin
createBooking(input:{
status:UNCONFIRMED,
paymentToken: "adasdasd",
bookingOutboundFlightId: "flight-UUID-here"
}) {
id
}
}
## Fetch a booking
query {
getBooking(id:"b46baf62-f9fe-4b0b-b2e3-741f5e11589d")
# selection set
{
id
outboundFlight {
id
departureDate
}
}
}