-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
769 lines (660 loc) · 14 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
"""Address information"""
input addressInput {
"""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!
}
type broker {
id: String!
clientid: String!
name: String!
streetaddress: String!
city: String!
postalcode: String!
province: String!
country: String!
email: String!
phone: String!
contactname: String!
createdAt: Date!
updatedAt: Date!
}
input brokerInput {
id: String
clientid: String
name: String
streetaddress: String
city: String
postalcode: String
province: String
country: String
email: String
phone: String
contactname: String
createdAt: Date
updatedAt: Date
}
"""Broker modified input information"""
input brokerModifiedInput {
"""The uuid of broker, automatically generated if not provided."""
id: ID
"""Name of the broker."""
name: String
"""Street address of the broker"""
streetaddress: String
"""City of the broker"""
city: String
"""Post code address of broker."""
postalcode: String
"""Province of the broker."""
province: String
"""Country of the broker."""
country: String
"""Email address of the broker."""
email: String
"""Phone number of the broker"""
phone: String
"""Contact name at the broker`s office"""
contactname: String
}
type client {
id: String!
name: String!
legalname: String!
streetaddress: String!
city: String!
postalcode: String!
province: String!
country: String!
isActive: String!
email: String!
phone: String!
contactname: String!
startdate: Date!
createdAt: Date!
updatedAt: Date!
}
input clientInput {
id: String
name: String
legalname: String
streetaddress: String
city: String
postalcode: String
province: String
country: String
isActive: String
email: String
phone: String
contactname: String
startdate: Date
createdAt: Date
updatedAt: Date
}
"""
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!
}
input driverInput {
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
}
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
}
"""Load modified input information"""
input loadModifiedInput {
"""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: [receiverInput]!
"""List of shippers (shipper: [string])"""
shipper: [shipperInput]!
"""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
}
"""Mutating data"""
type Mutation {
addTrailer(
"""Trailer input values"""
input: trailerModifiedInput
): trailer
addTruck(
"""Truck input values"""
input: truckModifiedInput
): truck
addUserAccount(
"""UserAccount input values"""
input: userAccountInput
): userAccount
addLoad(
"""Load input values"""
input: loadModifiedInput
): load
addBroker(
"""Broker input values"""
input: brokerModifiedInput
): broker
addDriver(
"""Driver input values"""
input: driverInput
): driver
addTrip(
"""Trip input values"""
input: TripModifiedInput
): trip
addPayroll(
"""Payroll input values"""
input: payrollInput
): payroll
updateTrailer(
"""Trailer input values"""
input: trailerModifiedInput
"""update where id match"""
id: String
): trailer
deleteTrailer(
"""Delete record where id match"""
id: ID!
): trailer
updateTruck(
"""Truck input values"""
input: truckModifiedInput
"""update where id match"""
id: String
): truck
deleteTruck(
"""Delete record where id match"""
id: ID!
): truck
updateUserAccount(
"""UserAccount input values"""
input: userAccountInput
"""update where id match"""
id: String
): userAccount
deleteUserAccount(
"""Delete record where id match"""
id: ID!
): userAccount
updateLoad(
"""Load input values"""
input: loadModifiedInput
"""update where id match"""
id: String
): load
deleteLoad(
"""Delete record where id match"""
id: ID!
): load
updateBroker(
"""Broker input values"""
input: brokerModifiedInput
"""update where id match"""
id: String
): broker
deleteBroker(
"""Delete record where id match"""
id: ID!
): broker
updateDriver(
"""Driver input values"""
input: driverInput
"""update where id match"""
id: String
): driver
deleteDriver(
"""Delete record where id match"""
id: ID!
): driver
updateTrip(
"""Trip input values"""
input: TripModifiedInput
"""update where id match"""
id: String
): trip
deleteTrip(
"""Delete record where id match"""
id: ID!
): trip
updatePayroll(
"""Payroll input values"""
input: payrollInput
"""update where id match"""
id: String
): payroll
deletePayroll(
"""Delete record where id match"""
id: ID!
): payroll
addClient(input: clientInput): client
}
type payroll {
id: String!
clientid: String!
payrollTo: String!
loadId: String!
brokerId: String
shipper: [String]!
receiver: [String]!
poNumber: String!
trailerNo: String
commodity: String
hazmat: Boolean!
totalWeight: String
filepath: [String]
totalMiles: Float
perMileRate: Float
totalHours: Float
perHourRate: Float
totalPay: Float
createdAt: Date!
updatedAt: Date!
}
input payrollInput {
id: String
clientid: String
payrollTo: String
loadId: String
brokerId: String
shipper: [String]
receiver: [String]
poNumber: String
trailerNo: String
commodity: String
hazmat: Boolean
totalWeight: String
filepath: [String]
totalMiles: Float
perMileRate: Float
totalHours: Float
perHourRate: Float
totalPay: Float
createdAt: Date
updatedAt: Date
}
"""Query data from graphql"""
type Query {
trailers(
"""Find record using where expression"""
where: trailerInput
"""Field to order by"""
orderBy: String
): [trailer]
trucks(
"""Find record using where expression"""
where: truckInput
"""Field to order by"""
orderBy: String
): [truck]
userAccounts(
"""Find record using where expression"""
where: userAccountInput
"""Field to order by"""
orderBy: String
): [userAccount]
loads(
"""Find record using where expression"""
where: loadInput
"""Field to order by"""
orderBy: String
): [load]
brokers(
"""Find record using where expression"""
where: brokerInput
"""Field to order by"""
orderBy: String
): [broker]
drivers(
"""Find record using where expression"""
where: driverInput
"""Field to order by"""
orderBy: String
): [driver]
trips(
"""Find record using where expression"""
where: tripInput
"""Field to order by"""
orderBy: String
): [trip]
payrolls(
"""Find record using where expression"""
where: payrollInput
"""Field to order by"""
orderBy: String
): [payroll]
clients(
"""Find record using where expression"""
where: clientInput
"""Field to order by"""
orderBy: String
): [client]
}
"""Receiver information"""
input receiverInput {
"""StopID(uuid) for the receiver"""
stopID: ID!
"""The name of the receiver"""
receiverName: String!
"""Address of the receiver"""
address: addressInput!
"""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
}
"""Shipper information"""
input shipperInput {
"""StopID(uuid) for the shipper"""
stopID: ID!
"""The name of the shipper"""
shipperName: String!
"""Address of the shipper"""
address: addressInput!
"""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
}
"""Trailer modified input information"""
input trailerModifiedInput {
"""The uuid of equipment, automatically generated if not provided"""
id: ID
"""Model for equipment"""
model: String!
"""Make of the equipment"""
make: String!
"""Year of the equipment"""
year: String!
"""VIN number of the equipment"""
vinNumber: String
"""Licence plate of the equipment"""
licencePlate: String!
"""Licence state of the equipment"""
licenceState: String!
"""Safety expire date of equipment"""
safetyExpire: String!
"""Any notes related to the equipment"""
notes: String
"""Trailer number"""
trailerNo: String!
"""Trailer attributes"""
trailerAttributes: String!
}
type trip {
id: String!
tripId: Int!
state: String!
clientid: String!
assignedTo: String!
tripInfo: [String]!
bol: [String]
pod: [String]
totalMiles: Float
createdAt: Date!
updatedAt: Date!
}
"""Trip information"""
input TripInfoInput {
"""The id of the load included in the trip"""
id: ID!
}
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 input fields"""
input TripModifiedInput {
"""The ID of the trip, automatically generated"""
id: ID
"""The driver ID of the assigned driver"""
assignedTo: ID!
"""The trip information"""
tripInfo: [TripInfoInput]!
"""State (state: string), CREATED | ASSIGNED | MOVING | DELIVERED | PAID"""
state: String!
"""Total miles of the trip"""
totalMiles: Float
}
type truck {
id: String!
clientid: String!
model: String!
make: String!
year: String!
truckNo: String!
vinNumber: String
licencePlate: String!
licenceState: String!
safetyExpire: String!
filepath: [String]
notes: String
createdAt: Date!
updatedAt: Date!
}
input truckInput {
id: String
clientid: String
model: String
make: String
year: String
truckNo: String
vinNumber: String
licencePlate: String
licenceState: String
safetyExpire: String
filepath: [String]
notes: String
createdAt: Date
updatedAt: Date
}
"""Truck modified input information"""
input truckModifiedInput {
"""The uuid of equipment, automatically generated if not provided"""
id: ID
"""Model for equipment"""
model: String!
"""Make of the equipment"""
make: String!
"""Year of the equipment"""
year: String!
"""VIN number of the equipment"""
vinNumber: String
"""Licence plate of the equipment"""
licencePlate: String!
"""Licence state of the equipment"""
licenceState: String!
"""Safety expire date of equipment"""
safetyExpire: String!
"""Any notes related to the equipment"""
notes: String
"""Truck number"""
truckNo: String!
}
type userAccount {
id: String!
firstname: String!
lastname: String!
username: String!
email: String!
password: String!
company: String!
address: [String]
active: Boolean!
awaitingSignup: Boolean!
role: String
filepath: [String]
createdAt: Date!
updatedAt: Date!
clientid: String!
token: String
}
input userAccountInput {
id: String
firstname: String
lastname: String
username: String
email: String
password: String
company: String
address: [String]
active: Boolean
awaitingSignup: Boolean
role: String
filepath: [String]
createdAt: Date
updatedAt: Date
clientid: String
token: String
}