-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
338 lines (276 loc) · 6.32 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
schema {
query: Query
mutation: driverMutations
}
"""Exposes a URL that specifies the behaviour of this scalar."""
directive @specifiedBy(
"""The URL that specifies the behaviour of this scalar."""
url: String!
) on SCALAR
"""Address information"""
type addressOutput {
"""Unit number of bussiness or house number"""
unitNumber: String!
"""Street name"""
streetName: String!
"""Name of the city"""
city: String!
"""Name of the state/province"""
state: String!
"""Name of the country"""
country: String
"""Postal code for the address important"""
postalCode: String!
}
"""
A special custom Scalar type for Dates that converts to a ISO formatted string
"""
scalar Date
type driver {
id: String!
firstname: String!
lastname: String!
phone: String!
email: String!
password: String!
driver_id: String!
drivers_licence: String!
licence_state: String!
truckno: String!
clientid: String!
address: [String]!
awaitingSignup: Boolean!
filepath: [String]
reg_date: Date!
createdAt: Date!
updatedAt: Date!
}
"""Driver app mutations"""
type driverMutations {
responseToTrip(
"""Driver accept or reject load"""
driverResponse: driverResponseEnum!
"""Trip uuid which is updating"""
id: ID!
): TripModifiedOutput
reportArrivalOrDepart(
"""Report arrival or departure by StopID"""
input: reportArrivalOrDepartInput!
"""Load uuid which is updating"""
loadID: ID!
"""stop id which is updating"""
stopID: ID!
): loadModifiedOutput
}
enum driverResponseEnum {
CREATED
ASSIGNED
PENDING
ACCEPTED
REJECTED
LOADING
LOADED
MOVING
DELIVERING
DELIVERED
}
type load {
id: String!
clientid: String!
assignedTo: String
tripId: String
brokerId: String!
loadId: Int
state: String!
shipper: [String]!
receiver: [String]!
poNumber: String!
trailerNo: String
commodity: String
hazmat: Boolean!
totalWeight: String
filepath: [String]
specialInstructions: String
createdAt: Date!
updatedAt: Date!
}
input loadInput {
id: String
clientid: String
assignedTo: String
tripId: String
brokerId: String
loadId: Int
state: String
shipper: [String]
receiver: [String]
poNumber: String
trailerNo: String
commodity: String
hazmat: Boolean
totalWeight: String
filepath: [String]
specialInstructions: String
createdAt: Date
updatedAt: Date
}
"""Loads output information"""
type loadModifiedOutput {
"""The uuid of load, automatically generated if not provided"""
id: ID!
"""Load assigned to (driverId: uuid)"""
assignedTo: ID
"""Load brokerId (brokerId: uuid)"""
brokerId: String
"""List of receivers (receiver: [string])"""
receiver: [receiverOutput]!
"""List of shippers (shipper: [string])"""
shipper: [shipperOutput]!
"""Commodity of the load (commodity: string)"""
commodity: String
"""Is load is hazmat yes or no? (hazmat: boolean)"""
hazmat: Boolean!
"""Po number (poNumber: string)"""
poNumber: String!
"""Special instructions (specialInstructions: string)"""
specialInstructions: String
"""State (state: string), CREATED | ASSIGNED | MOVING | DELIVERED | PAID"""
state: String!
"""Assigned Trailer number (trailerNo: string)"""
trailerNo: String
"""Total weight (totalWeight: string)"""
totalWeight: String
}
"""Query data from driver app graphql"""
type Query {
findAssignedTrips(
"""Find record using where expression"""
where: tripInput
"""Field to order by"""
orderBy: String
): [TripModifiedOutput]
driverInfo: driver
trailers(
"""Find record using where expression"""
where: trailerInput
"""Field to order by"""
orderBy: String
): [trailer]
findAssignedLoads(
"""Find record using where expression"""
where: loadInput
"""Field to order by"""
orderBy: String
): [load]
}
"""Receiver information"""
type receiverOutput {
"""StopID(uuid) for the receiver"""
stopID: ID!
"""The name of the receiver"""
receiverName: String!
"""Address of the receiver"""
address: addressOutput!
"""Phone number of the receiver"""
phoneNumber: String
"""Email of the receiver"""
email: String
"""Arrival at the receiver"""
arrival: String
"""Depart at the receiver"""
depart: String
"""Delivery appointment date and time"""
deliveryAppointment: String
}
"""Arrival or departure timestamp input"""
input reportArrivalOrDepartInput {
"""Arrival timestamp"""
arrival: String
"""Depart timestamp"""
depart: String
}
"""Shipper information"""
type shipperOutput {
"""StopID(uuid) for the shipper"""
stopID: ID!
"""The name of the shipper"""
shipperName: String!
"""Address of the shipper"""
address: addressOutput!
"""Phone number of the shipper"""
phoneNumber: String
"""Email of the shipper"""
email: String
"""Arrival at the shipper"""
arrival: String
"""Depart at the shipper"""
depart: String
"""Pick up appointment date and time"""
pickUpAppointment: String
}
type trailer {
id: String!
clientid: String!
trailerAttributes: String!
model: String!
make: String!
year: String!
trailerNo: String!
vinNumber: String
licencePlate: String!
licenceState: String!
safetyExpire: String!
filepath: [String]
notes: String
createdAt: Date!
updatedAt: Date!
}
input trailerInput {
id: String
clientid: String
trailerAttributes: String
model: String
make: String
year: String
trailerNo: String
vinNumber: String
licencePlate: String
licenceState: String
safetyExpire: String
filepath: [String]
notes: String
createdAt: Date
updatedAt: Date
}
input tripInput {
id: String
tripId: Int
state: String
clientid: String
assignedTo: String
tripInfo: [String]
bol: [String]
pod: [String]
totalMiles: Float
createdAt: Date
updatedAt: Date
}
"""Trip output fields"""
type TripModifiedOutput {
"""The ID of the trip, automatically generated"""
id: ID!
"""The driver ID of the assigned driver"""
assignedTo: ID!
"""The trip information"""
tripInfo: [loadModifiedOutput]!
"""State (state: string), CREATED | ASSIGNED | MOVING | DELIVERED | PAID"""
state: String!
"""Total miles of the trip"""
totalMiles: Float
"""BOL of the trip, aws file download link"""
bol: [String]
"""POD of the trip, aws file download link"""
pod: [String]
"""Trip id number, automatically generated"""
tripId: Int!
}