-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
1661 lines (1515 loc) · 44.5 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
# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: query_root
mutation: mutation_root
subscription: subscription_root
}
"columns and relationships of \"Constructor\""
type Constructor {
"An array relationship"
RaceResults(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): [RaceResult!]!
"An aggregated array relationship"
RaceResults_aggregate(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): RaceResult_aggregate!
id: uuid!
name: String!
}
"aggregated selection of \"Constructor\""
type Constructor_aggregate {
aggregate: Constructor_aggregate_fields
nodes: [Constructor!]!
}
"aggregate fields of \"Constructor\""
type Constructor_aggregate_fields {
count(columns: [Constructor_select_column!], distinct: Boolean): Int
max: Constructor_max_fields
min: Constructor_min_fields
}
"aggregate max on columns"
type Constructor_max_fields {
id: uuid
name: String
}
"aggregate min on columns"
type Constructor_min_fields {
id: uuid
name: String
}
"response of any mutation on the table \"Constructor\""
type Constructor_mutation_response {
"number of affected rows by the mutation"
affected_rows: Int!
"data of the affected rows by the mutation"
returning: [Constructor!]!
}
"columns and relationships of \"Driver\""
type Driver {
"An array relationship"
RaceResults(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): [RaceResult!]!
"An aggregated array relationship"
RaceResults_aggregate(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): RaceResult_aggregate!
id: uuid!
name: String!
}
"aggregated selection of \"Driver\""
type Driver_aggregate {
aggregate: Driver_aggregate_fields
nodes: [Driver!]!
}
"aggregate fields of \"Driver\""
type Driver_aggregate_fields {
count(columns: [Driver_select_column!], distinct: Boolean): Int
max: Driver_max_fields
min: Driver_min_fields
}
"aggregate max on columns"
type Driver_max_fields {
id: uuid
name: String
}
"aggregate min on columns"
type Driver_min_fields {
id: uuid
name: String
}
"response of any mutation on the table \"Driver\""
type Driver_mutation_response {
"number of affected rows by the mutation"
affected_rows: Int!
"data of the affected rows by the mutation"
returning: [Driver!]!
}
"columns and relationships of \"Race\""
type Race {
"An array relationship"
RaceResults(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): [RaceResult!]!
"An aggregated array relationship"
RaceResults_aggregate(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): RaceResult_aggregate!
"An object relationship"
Season: Season!
date: date!
id: uuid!
name: String!
round: Int!
season_id: uuid!
}
"columns and relationships of \"RaceResult\""
type RaceResult {
"An object relationship"
Constructor: Constructor!
"An object relationship"
Driver: Driver!
"An object relationship"
Race: Race!
constructor_id: uuid!
driver_id: uuid!
id: uuid!
points: Int!
position: Int!
race_id: uuid!
}
"aggregated selection of \"RaceResult\""
type RaceResult_aggregate {
aggregate: RaceResult_aggregate_fields
nodes: [RaceResult!]!
}
"aggregate fields of \"RaceResult\""
type RaceResult_aggregate_fields {
avg: RaceResult_avg_fields
count(columns: [RaceResult_select_column!], distinct: Boolean): Int
max: RaceResult_max_fields
min: RaceResult_min_fields
stddev: RaceResult_stddev_fields
stddev_pop: RaceResult_stddev_pop_fields
stddev_samp: RaceResult_stddev_samp_fields
sum: RaceResult_sum_fields
var_pop: RaceResult_var_pop_fields
var_samp: RaceResult_var_samp_fields
variance: RaceResult_variance_fields
}
"aggregate avg on columns"
type RaceResult_avg_fields {
points: Float
position: Float
}
"aggregate max on columns"
type RaceResult_max_fields {
constructor_id: uuid
driver_id: uuid
id: uuid
points: Int
position: Int
race_id: uuid
}
"aggregate min on columns"
type RaceResult_min_fields {
constructor_id: uuid
driver_id: uuid
id: uuid
points: Int
position: Int
race_id: uuid
}
"response of any mutation on the table \"RaceResult\""
type RaceResult_mutation_response {
"number of affected rows by the mutation"
affected_rows: Int!
"data of the affected rows by the mutation"
returning: [RaceResult!]!
}
"aggregate stddev on columns"
type RaceResult_stddev_fields {
points: Float
position: Float
}
"aggregate stddev_pop on columns"
type RaceResult_stddev_pop_fields {
points: Float
position: Float
}
"aggregate stddev_samp on columns"
type RaceResult_stddev_samp_fields {
points: Float
position: Float
}
"aggregate sum on columns"
type RaceResult_sum_fields {
points: Int
position: Int
}
"aggregate var_pop on columns"
type RaceResult_var_pop_fields {
points: Float
position: Float
}
"aggregate var_samp on columns"
type RaceResult_var_samp_fields {
points: Float
position: Float
}
"aggregate variance on columns"
type RaceResult_variance_fields {
points: Float
position: Float
}
"aggregated selection of \"Race\""
type Race_aggregate {
aggregate: Race_aggregate_fields
nodes: [Race!]!
}
"aggregate fields of \"Race\""
type Race_aggregate_fields {
avg: Race_avg_fields
count(columns: [Race_select_column!], distinct: Boolean): Int
max: Race_max_fields
min: Race_min_fields
stddev: Race_stddev_fields
stddev_pop: Race_stddev_pop_fields
stddev_samp: Race_stddev_samp_fields
sum: Race_sum_fields
var_pop: Race_var_pop_fields
var_samp: Race_var_samp_fields
variance: Race_variance_fields
}
"aggregate avg on columns"
type Race_avg_fields {
round: Float
}
"aggregate max on columns"
type Race_max_fields {
date: date
id: uuid
name: String
round: Int
season_id: uuid
}
"aggregate min on columns"
type Race_min_fields {
date: date
id: uuid
name: String
round: Int
season_id: uuid
}
"response of any mutation on the table \"Race\""
type Race_mutation_response {
"number of affected rows by the mutation"
affected_rows: Int!
"data of the affected rows by the mutation"
returning: [Race!]!
}
"aggregate stddev on columns"
type Race_stddev_fields {
round: Float
}
"aggregate stddev_pop on columns"
type Race_stddev_pop_fields {
round: Float
}
"aggregate stddev_samp on columns"
type Race_stddev_samp_fields {
round: Float
}
"aggregate sum on columns"
type Race_sum_fields {
round: Int
}
"aggregate var_pop on columns"
type Race_var_pop_fields {
round: Float
}
"aggregate var_samp on columns"
type Race_var_samp_fields {
round: Float
}
"aggregate variance on columns"
type Race_variance_fields {
round: Float
}
"columns and relationships of \"Season\""
type Season {
"An array relationship"
Races(
"distinct select on columns"
distinct_on: [Race_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Race_order_by!],
"filter the rows returned"
where: Race_bool_exp
): [Race!]!
"An aggregated array relationship"
Races_aggregate(
"distinct select on columns"
distinct_on: [Race_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Race_order_by!],
"filter the rows returned"
where: Race_bool_exp
): Race_aggregate!
id: uuid!
name: String!
}
"aggregated selection of \"Season\""
type Season_aggregate {
aggregate: Season_aggregate_fields
nodes: [Season!]!
}
"aggregate fields of \"Season\""
type Season_aggregate_fields {
count(columns: [Season_select_column!], distinct: Boolean): Int
max: Season_max_fields
min: Season_min_fields
}
"aggregate max on columns"
type Season_max_fields {
id: uuid
name: String
}
"aggregate min on columns"
type Season_min_fields {
id: uuid
name: String
}
"response of any mutation on the table \"Season\""
type Season_mutation_response {
"number of affected rows by the mutation"
affected_rows: Int!
"data of the affected rows by the mutation"
returning: [Season!]!
}
"mutation root"
type mutation_root {
"delete data from the table: \"Constructor\""
delete_Constructor(
"filter the rows which have to be deleted"
where: Constructor_bool_exp!
): Constructor_mutation_response
"delete single row from the table: \"Constructor\""
delete_Constructor_by_pk(id: uuid!): Constructor
"delete data from the table: \"Driver\""
delete_Driver(
"filter the rows which have to be deleted"
where: Driver_bool_exp!
): Driver_mutation_response
"delete single row from the table: \"Driver\""
delete_Driver_by_pk(id: uuid!): Driver
"delete data from the table: \"Race\""
delete_Race(
"filter the rows which have to be deleted"
where: Race_bool_exp!
): Race_mutation_response
"delete data from the table: \"RaceResult\""
delete_RaceResult(
"filter the rows which have to be deleted"
where: RaceResult_bool_exp!
): RaceResult_mutation_response
"delete single row from the table: \"RaceResult\""
delete_RaceResult_by_pk(id: uuid!): RaceResult
"delete single row from the table: \"Race\""
delete_Race_by_pk(id: uuid!): Race
"delete data from the table: \"Season\""
delete_Season(
"filter the rows which have to be deleted"
where: Season_bool_exp!
): Season_mutation_response
"delete single row from the table: \"Season\""
delete_Season_by_pk(id: uuid!): Season
"insert data into the table: \"Constructor\""
insert_Constructor(
"the rows to be inserted"
objects: [Constructor_insert_input!]!,
"on conflict condition"
on_conflict: Constructor_on_conflict
): Constructor_mutation_response
"insert a single row into the table: \"Constructor\""
insert_Constructor_one(
"the row to be inserted"
object: Constructor_insert_input!,
"on conflict condition"
on_conflict: Constructor_on_conflict
): Constructor
"insert data into the table: \"Driver\""
insert_Driver(
"the rows to be inserted"
objects: [Driver_insert_input!]!,
"on conflict condition"
on_conflict: Driver_on_conflict
): Driver_mutation_response
"insert a single row into the table: \"Driver\""
insert_Driver_one(
"the row to be inserted"
object: Driver_insert_input!,
"on conflict condition"
on_conflict: Driver_on_conflict
): Driver
"insert data into the table: \"Race\""
insert_Race(
"the rows to be inserted"
objects: [Race_insert_input!]!,
"on conflict condition"
on_conflict: Race_on_conflict
): Race_mutation_response
"insert data into the table: \"RaceResult\""
insert_RaceResult(
"the rows to be inserted"
objects: [RaceResult_insert_input!]!,
"on conflict condition"
on_conflict: RaceResult_on_conflict
): RaceResult_mutation_response
"insert a single row into the table: \"RaceResult\""
insert_RaceResult_one(
"the row to be inserted"
object: RaceResult_insert_input!,
"on conflict condition"
on_conflict: RaceResult_on_conflict
): RaceResult
"insert a single row into the table: \"Race\""
insert_Race_one(
"the row to be inserted"
object: Race_insert_input!,
"on conflict condition"
on_conflict: Race_on_conflict
): Race
"insert data into the table: \"Season\""
insert_Season(
"the rows to be inserted"
objects: [Season_insert_input!]!,
"on conflict condition"
on_conflict: Season_on_conflict
): Season_mutation_response
"insert a single row into the table: \"Season\""
insert_Season_one(
"the row to be inserted"
object: Season_insert_input!,
"on conflict condition"
on_conflict: Season_on_conflict
): Season
"update data of the table: \"Constructor\""
update_Constructor(
"sets the columns of the filtered rows to the given values"
_set: Constructor_set_input,
"filter the rows which have to be updated"
where: Constructor_bool_exp!
): Constructor_mutation_response
"update single row of the table: \"Constructor\""
update_Constructor_by_pk(
"sets the columns of the filtered rows to the given values"
_set: Constructor_set_input,
pk_columns: Constructor_pk_columns_input!
): Constructor
"update data of the table: \"Driver\""
update_Driver(
"sets the columns of the filtered rows to the given values"
_set: Driver_set_input,
"filter the rows which have to be updated"
where: Driver_bool_exp!
): Driver_mutation_response
"update single row of the table: \"Driver\""
update_Driver_by_pk(
"sets the columns of the filtered rows to the given values"
_set: Driver_set_input,
pk_columns: Driver_pk_columns_input!
): Driver
"update data of the table: \"Race\""
update_Race(
"increments the integer columns with given value of the filtered values"
_inc: Race_inc_input,
"sets the columns of the filtered rows to the given values"
_set: Race_set_input,
"filter the rows which have to be updated"
where: Race_bool_exp!
): Race_mutation_response
"update data of the table: \"RaceResult\""
update_RaceResult(
"increments the integer columns with given value of the filtered values"
_inc: RaceResult_inc_input,
"sets the columns of the filtered rows to the given values"
_set: RaceResult_set_input,
"filter the rows which have to be updated"
where: RaceResult_bool_exp!
): RaceResult_mutation_response
"update single row of the table: \"RaceResult\""
update_RaceResult_by_pk(
"increments the integer columns with given value of the filtered values"
_inc: RaceResult_inc_input,
"sets the columns of the filtered rows to the given values"
_set: RaceResult_set_input,
pk_columns: RaceResult_pk_columns_input!
): RaceResult
"update single row of the table: \"Race\""
update_Race_by_pk(
"increments the integer columns with given value of the filtered values"
_inc: Race_inc_input,
"sets the columns of the filtered rows to the given values"
_set: Race_set_input,
pk_columns: Race_pk_columns_input!
): Race
"update data of the table: \"Season\""
update_Season(
"sets the columns of the filtered rows to the given values"
_set: Season_set_input,
"filter the rows which have to be updated"
where: Season_bool_exp!
): Season_mutation_response
"update single row of the table: \"Season\""
update_Season_by_pk(
"sets the columns of the filtered rows to the given values"
_set: Season_set_input,
pk_columns: Season_pk_columns_input!
): Season
}
"query root"
type query_root {
"fetch data from the table: \"Constructor\""
Constructor(
"distinct select on columns"
distinct_on: [Constructor_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Constructor_order_by!],
"filter the rows returned"
where: Constructor_bool_exp
): [Constructor!]!
"fetch aggregated fields from the table: \"Constructor\""
Constructor_aggregate(
"distinct select on columns"
distinct_on: [Constructor_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Constructor_order_by!],
"filter the rows returned"
where: Constructor_bool_exp
): Constructor_aggregate!
"fetch data from the table: \"Constructor\" using primary key columns"
Constructor_by_pk(id: uuid!): Constructor
"fetch data from the table: \"Driver\""
Driver(
"distinct select on columns"
distinct_on: [Driver_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Driver_order_by!],
"filter the rows returned"
where: Driver_bool_exp
): [Driver!]!
"fetch aggregated fields from the table: \"Driver\""
Driver_aggregate(
"distinct select on columns"
distinct_on: [Driver_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Driver_order_by!],
"filter the rows returned"
where: Driver_bool_exp
): Driver_aggregate!
"fetch data from the table: \"Driver\" using primary key columns"
Driver_by_pk(id: uuid!): Driver
"fetch data from the table: \"Race\""
Race(
"distinct select on columns"
distinct_on: [Race_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Race_order_by!],
"filter the rows returned"
where: Race_bool_exp
): [Race!]!
"fetch data from the table: \"RaceResult\""
RaceResult(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): [RaceResult!]!
"fetch aggregated fields from the table: \"RaceResult\""
RaceResult_aggregate(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): RaceResult_aggregate!
"fetch data from the table: \"RaceResult\" using primary key columns"
RaceResult_by_pk(id: uuid!): RaceResult
"fetch aggregated fields from the table: \"Race\""
Race_aggregate(
"distinct select on columns"
distinct_on: [Race_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Race_order_by!],
"filter the rows returned"
where: Race_bool_exp
): Race_aggregate!
"fetch data from the table: \"Race\" using primary key columns"
Race_by_pk(id: uuid!): Race
"fetch data from the table: \"Season\""
Season(
"distinct select on columns"
distinct_on: [Season_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Season_order_by!],
"filter the rows returned"
where: Season_bool_exp
): [Season!]!
"fetch aggregated fields from the table: \"Season\""
Season_aggregate(
"distinct select on columns"
distinct_on: [Season_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Season_order_by!],
"filter the rows returned"
where: Season_bool_exp
): Season_aggregate!
"fetch data from the table: \"Season\" using primary key columns"
Season_by_pk(id: uuid!): Season
}
"subscription root"
type subscription_root {
"fetch data from the table: \"Constructor\""
Constructor(
"distinct select on columns"
distinct_on: [Constructor_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Constructor_order_by!],
"filter the rows returned"
where: Constructor_bool_exp
): [Constructor!]!
"fetch aggregated fields from the table: \"Constructor\""
Constructor_aggregate(
"distinct select on columns"
distinct_on: [Constructor_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Constructor_order_by!],
"filter the rows returned"
where: Constructor_bool_exp
): Constructor_aggregate!
"fetch data from the table: \"Constructor\" using primary key columns"
Constructor_by_pk(id: uuid!): Constructor
"fetch data from the table: \"Driver\""
Driver(
"distinct select on columns"
distinct_on: [Driver_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Driver_order_by!],
"filter the rows returned"
where: Driver_bool_exp
): [Driver!]!
"fetch aggregated fields from the table: \"Driver\""
Driver_aggregate(
"distinct select on columns"
distinct_on: [Driver_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Driver_order_by!],
"filter the rows returned"
where: Driver_bool_exp
): Driver_aggregate!
"fetch data from the table: \"Driver\" using primary key columns"
Driver_by_pk(id: uuid!): Driver
"fetch data from the table: \"Race\""
Race(
"distinct select on columns"
distinct_on: [Race_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Race_order_by!],
"filter the rows returned"
where: Race_bool_exp
): [Race!]!
"fetch data from the table: \"RaceResult\""
RaceResult(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): [RaceResult!]!
"fetch aggregated fields from the table: \"RaceResult\""
RaceResult_aggregate(
"distinct select on columns"
distinct_on: [RaceResult_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [RaceResult_order_by!],
"filter the rows returned"
where: RaceResult_bool_exp
): RaceResult_aggregate!
"fetch data from the table: \"RaceResult\" using primary key columns"
RaceResult_by_pk(id: uuid!): RaceResult
"fetch aggregated fields from the table: \"Race\""
Race_aggregate(
"distinct select on columns"
distinct_on: [Race_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Race_order_by!],
"filter the rows returned"
where: Race_bool_exp
): Race_aggregate!
"fetch data from the table: \"Race\" using primary key columns"
Race_by_pk(id: uuid!): Race
"fetch data from the table: \"Season\""
Season(
"distinct select on columns"
distinct_on: [Season_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Season_order_by!],
"filter the rows returned"
where: Season_bool_exp
): [Season!]!
"fetch aggregated fields from the table: \"Season\""
Season_aggregate(
"distinct select on columns"
distinct_on: [Season_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [Season_order_by!],
"filter the rows returned"
where: Season_bool_exp
): Season_aggregate!
"fetch data from the table: \"Season\" using primary key columns"
Season_by_pk(id: uuid!): Season
}
"unique or primary key constraints on table \"Constructor\""
enum Constructor_constraint {
"unique or primary key constraint"
Constructor_pkey
}
"select columns of table \"Constructor\""
enum Constructor_select_column {
"column name"
id
"column name"
name
}
"update columns of table \"Constructor\""
enum Constructor_update_column {
"column name"
id
"column name"
name
}
"unique or primary key constraints on table \"Driver\""
enum Driver_constraint {
"unique or primary key constraint"
Driver_pkey
}
"select columns of table \"Driver\""
enum Driver_select_column {
"column name"
id
"column name"
name
}
"update columns of table \"Driver\""
enum Driver_update_column {
"column name"
id
"column name"
name
}
"unique or primary key constraints on table \"RaceResult\""
enum RaceResult_constraint {
"unique or primary key constraint"
RaceResult_pkey
}
"select columns of table \"RaceResult\""
enum RaceResult_select_column {
"column name"
constructor_id
"column name"
driver_id
"column name"
id
"column name"
points
"column name"
position
"column name"
race_id
}
"update columns of table \"RaceResult\""
enum RaceResult_update_column {
"column name"
constructor_id
"column name"
driver_id
"column name"
id
"column name"
points
"column name"
position
"column name"
race_id
}
"unique or primary key constraints on table \"Race\""
enum Race_constraint {
"unique or primary key constraint"
Race_name_key
"unique or primary key constraint"
Race_pkey
}