@@ -515,7 +515,7 @@ pub enum __Type {
515
515
// Mutation
516
516
Mutation ( MutationType ) ,
517
517
InsertInput ( InsertInputType ) ,
518
- InsertOnConflictInput ( InsertOnConflictType ) ,
518
+ OnConflictInput ( OnConflictType ) ,
519
519
InsertResponse ( InsertResponseType ) ,
520
520
UpdateInput ( UpdateInputType ) ,
521
521
UpdateResponse ( UpdateResponseType ) ,
@@ -594,7 +594,7 @@ impl ___Type for __Type {
594
594
Self :: Node ( x) => x. kind ( ) ,
595
595
Self :: NodeInterface ( x) => x. kind ( ) ,
596
596
Self :: InsertInput ( x) => x. kind ( ) ,
597
- Self :: InsertOnConflictInput ( x) => x. kind ( ) ,
597
+ Self :: OnConflictInput ( x) => x. kind ( ) ,
598
598
Self :: InsertResponse ( x) => x. kind ( ) ,
599
599
Self :: UpdateInput ( x) => x. kind ( ) ,
600
600
Self :: UpdateResponse ( x) => x. kind ( ) ,
@@ -630,7 +630,7 @@ impl ___Type for __Type {
630
630
Self :: Node ( x) => x. name ( ) ,
631
631
Self :: NodeInterface ( x) => x. name ( ) ,
632
632
Self :: InsertInput ( x) => x. name ( ) ,
633
- Self :: InsertOnConflictInput ( x) => x. name ( ) ,
633
+ Self :: OnConflictInput ( x) => x. name ( ) ,
634
634
Self :: InsertResponse ( x) => x. name ( ) ,
635
635
Self :: UpdateInput ( x) => x. name ( ) ,
636
636
Self :: UpdateResponse ( x) => x. name ( ) ,
@@ -666,7 +666,7 @@ impl ___Type for __Type {
666
666
Self :: Node ( x) => x. description ( ) ,
667
667
Self :: NodeInterface ( x) => x. description ( ) ,
668
668
Self :: InsertInput ( x) => x. description ( ) ,
669
- Self :: InsertOnConflictInput ( x) => x. description ( ) ,
669
+ Self :: OnConflictInput ( x) => x. description ( ) ,
670
670
Self :: InsertResponse ( x) => x. description ( ) ,
671
671
Self :: UpdateInput ( x) => x. description ( ) ,
672
672
Self :: UpdateResponse ( x) => x. description ( ) ,
@@ -703,7 +703,7 @@ impl ___Type for __Type {
703
703
Self :: Node ( x) => x. fields ( _include_deprecated) ,
704
704
Self :: NodeInterface ( x) => x. fields ( _include_deprecated) ,
705
705
Self :: InsertInput ( x) => x. fields ( _include_deprecated) ,
706
- Self :: InsertOnConflictInput ( x) => x. fields ( _include_deprecated) ,
706
+ Self :: OnConflictInput ( x) => x. fields ( _include_deprecated) ,
707
707
Self :: InsertResponse ( x) => x. fields ( _include_deprecated) ,
708
708
Self :: UpdateInput ( x) => x. fields ( _include_deprecated) ,
709
709
Self :: UpdateResponse ( x) => x. fields ( _include_deprecated) ,
@@ -740,7 +740,7 @@ impl ___Type for __Type {
740
740
Self :: Node ( x) => x. interfaces ( ) ,
741
741
Self :: NodeInterface ( x) => x. interfaces ( ) ,
742
742
Self :: InsertInput ( x) => x. interfaces ( ) ,
743
- Self :: InsertOnConflictInput ( x) => x. interfaces ( ) ,
743
+ Self :: OnConflictInput ( x) => x. interfaces ( ) ,
744
744
Self :: InsertResponse ( x) => x. interfaces ( ) ,
745
745
Self :: UpdateInput ( x) => x. interfaces ( ) ,
746
746
Self :: UpdateResponse ( x) => x. interfaces ( ) ,
@@ -786,7 +786,7 @@ impl ___Type for __Type {
786
786
Self :: Node ( x) => x. enum_values ( _include_deprecated) ,
787
787
Self :: NodeInterface ( x) => x. enum_values ( _include_deprecated) ,
788
788
Self :: InsertInput ( x) => x. enum_values ( _include_deprecated) ,
789
- Self :: InsertOnConflictInput ( x) => x. enum_values ( _include_deprecated) ,
789
+ Self :: OnConflictInput ( x) => x. enum_values ( _include_deprecated) ,
790
790
Self :: InsertResponse ( x) => x. enum_values ( _include_deprecated) ,
791
791
Self :: UpdateInput ( x) => x. enum_values ( _include_deprecated) ,
792
792
Self :: UpdateResponse ( x) => x. enum_values ( _include_deprecated) ,
@@ -823,7 +823,7 @@ impl ___Type for __Type {
823
823
Self :: Node ( x) => x. input_fields ( ) ,
824
824
Self :: NodeInterface ( x) => x. input_fields ( ) ,
825
825
Self :: InsertInput ( x) => x. input_fields ( ) ,
826
- Self :: InsertOnConflictInput ( x) => x. input_fields ( ) ,
826
+ Self :: OnConflictInput ( x) => x. input_fields ( ) ,
827
827
Self :: InsertResponse ( x) => x. input_fields ( ) ,
828
828
Self :: UpdateInput ( x) => x. input_fields ( ) ,
829
829
Self :: UpdateResponse ( x) => x. input_fields ( ) ,
@@ -971,7 +971,7 @@ pub struct InsertResponseType {
971
971
}
972
972
973
973
#[ derive( Clone , Debug , Eq , PartialEq , Hash ) ]
974
- pub struct InsertOnConflictType {
974
+ pub struct OnConflictType {
975
975
pub table : Arc < Table > ,
976
976
pub schema : Arc < __Schema > ,
977
977
}
@@ -1456,7 +1456,7 @@ impl ___Type for MutationType {
1456
1456
if table. has_upsert_support ( ) {
1457
1457
args. push ( __InputValue {
1458
1458
name_ : "onConflict" . to_string ( ) ,
1459
- type_ : __Type:: InsertOnConflictInput ( InsertOnConflictType {
1459
+ type_ : __Type:: OnConflictInput ( OnConflictType {
1460
1460
table : Arc :: clone ( table) ,
1461
1461
schema : Arc :: clone ( & self . schema ) ,
1462
1462
} ) ,
@@ -3162,7 +3162,7 @@ impl ___Type for InsertInputType {
3162
3162
}
3163
3163
}
3164
3164
3165
- impl ___Type for InsertOnConflictType {
3165
+ impl ___Type for OnConflictType {
3166
3166
fn kind ( & self ) -> __TypeKind {
3167
3167
__TypeKind:: INPUT_OBJECT
3168
3168
}
@@ -4294,7 +4294,7 @@ impl __Schema {
4294
4294
4295
4295
// Used exclusively by onConflict
4296
4296
if table. has_upsert_support ( ) {
4297
- types_. push ( __Type:: InsertOnConflictInput ( InsertOnConflictType {
4297
+ types_. push ( __Type:: OnConflictInput ( OnConflictType {
4298
4298
table : Arc :: clone ( table) ,
4299
4299
schema : Arc :: clone ( & schema_rc) ,
4300
4300
} ) ) ;
0 commit comments