Skip to content

Commit fcdc605

Browse files
committed
feature: double elimination brackets
1 parent bb472db commit fcdc605

12 files changed

Lines changed: 2725 additions & 2297 deletions

File tree

generated/schema.graphql

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11760,9 +11760,9 @@ unique or primary key constraints on table "match_map_veto_picks"
1176011760
"""
1176111761
enum match_map_veto_picks_constraint {
1176211762
"""
11763-
unique or primary key constraint on columns "match_id", "map_id"
11763+
unique or primary key constraint on columns "type", "match_id", "map_id"
1176411764
"""
11765-
match_map_veto_picks_match_id_map_id_key
11765+
match_map_veto_picks_map_id_match_id_type_key
1176611766

1176711767
"""
1176811768
unique or primary key constraint on columns "id"
@@ -39985,11 +39985,16 @@ type tournament_brackets {
3998539985
group: numeric
3998639986
id: uuid!
3998739987

39988+
"""An object relationship"""
39989+
loser_bracket: tournament_brackets
39990+
loser_parent_bracket_id: uuid
39991+
3998839992
"""An object relationship"""
3998939993
match: matches
3999039994
match_id: uuid
3999139995
match_number: Int
3999239996
parent_bracket_id: uuid
39997+
path: String
3999339998
round: Int!
3999439999
scheduled_eta: timestamptz
3999540000

@@ -40118,10 +40123,13 @@ input tournament_brackets_bool_exp {
4011840123
created_at: timestamptz_comparison_exp
4011940124
group: numeric_comparison_exp
4012040125
id: uuid_comparison_exp
40126+
loser_bracket: tournament_brackets_bool_exp
40127+
loser_parent_bracket_id: uuid_comparison_exp
4012140128
match: matches_bool_exp
4012240129
match_id: uuid_comparison_exp
4012340130
match_number: Int_comparison_exp
4012440131
parent_bracket_id: uuid_comparison_exp
40132+
path: String_comparison_exp
4012540133
round: Int_comparison_exp
4012640134
scheduled_eta: timestamptz_comparison_exp
4012740135
stage: tournament_stages_bool_exp
@@ -40168,10 +40176,13 @@ input tournament_brackets_insert_input {
4016840176
created_at: timestamptz
4016940177
group: numeric
4017040178
id: uuid
40179+
loser_bracket: tournament_brackets_obj_rel_insert_input
40180+
loser_parent_bracket_id: uuid
4017140181
match: matches_obj_rel_insert_input
4017240182
match_id: uuid
4017340183
match_number: Int
4017440184
parent_bracket_id: uuid
40185+
path: String
4017540186
round: Int
4017640187
scheduled_eta: timestamptz
4017740188
stage: tournament_stages_obj_rel_insert_input
@@ -40189,9 +40200,11 @@ type tournament_brackets_max_fields {
4018940200
created_at: timestamptz
4019040201
group: numeric
4019140202
id: uuid
40203+
loser_parent_bracket_id: uuid
4019240204
match_id: uuid
4019340205
match_number: Int
4019440206
parent_bracket_id: uuid
40207+
path: String
4019540208
round: Int
4019640209
scheduled_eta: timestamptz
4019740210
team_1_seed: Int
@@ -40208,9 +40221,11 @@ input tournament_brackets_max_order_by {
4020840221
created_at: order_by
4020940222
group: order_by
4021040223
id: order_by
40224+
loser_parent_bracket_id: order_by
4021140225
match_id: order_by
4021240226
match_number: order_by
4021340227
parent_bracket_id: order_by
40228+
path: order_by
4021440229
round: order_by
4021540230
scheduled_eta: order_by
4021640231
team_1_seed: order_by
@@ -40225,9 +40240,11 @@ type tournament_brackets_min_fields {
4022540240
created_at: timestamptz
4022640241
group: numeric
4022740242
id: uuid
40243+
loser_parent_bracket_id: uuid
4022840244
match_id: uuid
4022940245
match_number: Int
4023040246
parent_bracket_id: uuid
40247+
path: String
4023140248
round: Int
4023240249
scheduled_eta: timestamptz
4023340250
team_1_seed: Int
@@ -40244,9 +40261,11 @@ input tournament_brackets_min_order_by {
4024440261
created_at: order_by
4024540262
group: order_by
4024640263
id: order_by
40264+
loser_parent_bracket_id: order_by
4024740265
match_id: order_by
4024840266
match_number: order_by
4024940267
parent_bracket_id: order_by
40268+
path: order_by
4025040269
round: order_by
4025140270
scheduled_eta: order_by
4025240271
team_1_seed: order_by
@@ -40267,6 +40286,16 @@ type tournament_brackets_mutation_response {
4026740286
returning: [tournament_brackets!]!
4026840287
}
4026940288

40289+
"""
40290+
input type for inserting object relation for remote table "tournament_brackets"
40291+
"""
40292+
input tournament_brackets_obj_rel_insert_input {
40293+
data: tournament_brackets_insert_input!
40294+
40295+
"""upsert condition"""
40296+
on_conflict: tournament_brackets_on_conflict
40297+
}
40298+
4027040299
"""
4027140300
on_conflict condition type for table "tournament_brackets"
4027240301
"""
@@ -40282,10 +40311,13 @@ input tournament_brackets_order_by {
4028240311
created_at: order_by
4028340312
group: order_by
4028440313
id: order_by
40314+
loser_bracket: tournament_brackets_order_by
40315+
loser_parent_bracket_id: order_by
4028540316
match: matches_order_by
4028640317
match_id: order_by
4028740318
match_number: order_by
4028840319
parent_bracket_id: order_by
40320+
path: order_by
4028940321
round: order_by
4029040322
scheduled_eta: order_by
4029140323
stage: tournament_stages_order_by
@@ -40319,6 +40351,9 @@ enum tournament_brackets_select_column {
4031940351
"""column name"""
4032040352
id
4032140353

40354+
"""column name"""
40355+
loser_parent_bracket_id
40356+
4032240357
"""column name"""
4032340358
match_id
4032440359

@@ -40328,6 +40363,9 @@ enum tournament_brackets_select_column {
4032840363
"""column name"""
4032940364
parent_bracket_id
4033040365

40366+
"""column name"""
40367+
path
40368+
4033140369
"""column name"""
4033240370
round
4033340371

@@ -40374,9 +40412,11 @@ input tournament_brackets_set_input {
4037440412
created_at: timestamptz
4037540413
group: numeric
4037640414
id: uuid
40415+
loser_parent_bracket_id: uuid
4037740416
match_id: uuid
4037840417
match_number: Int
4037940418
parent_bracket_id: uuid
40419+
path: String
4038040420
round: Int
4038140421
scheduled_eta: timestamptz
4038240422
team_1_seed: Int
@@ -40463,9 +40503,11 @@ input tournament_brackets_stream_cursor_value_input {
4046340503
created_at: timestamptz
4046440504
group: numeric
4046540505
id: uuid
40506+
loser_parent_bracket_id: uuid
4046640507
match_id: uuid
4046740508
match_number: Int
4046840509
parent_bracket_id: uuid
40510+
path: String
4046940511
round: Int
4047040512
scheduled_eta: timestamptz
4047140513
team_1_seed: Int
@@ -40511,6 +40553,9 @@ enum tournament_brackets_update_column {
4051140553
"""column name"""
4051240554
id
4051340555

40556+
"""column name"""
40557+
loser_parent_bracket_id
40558+
4051440559
"""column name"""
4051540560
match_id
4051640561

@@ -40520,6 +40565,9 @@ enum tournament_brackets_update_column {
4052040565
"""column name"""
4052140566
parent_bracket_id
4052240567

40568+
"""column name"""
40569+
path
40570+
4052340571
"""column name"""
4052440572
round
4052540573

0 commit comments

Comments
 (0)