@@ -515,7 +515,7 @@ pub enum __Type {
515515 // Mutation
516516 Mutation ( MutationType ) ,
517517 InsertInput ( InsertInputType ) ,
518- InsertOnConflictInput ( InsertOnConflictType ) ,
518+ OnConflictInput ( OnConflictType ) ,
519519 InsertResponse ( InsertResponseType ) ,
520520 UpdateInput ( UpdateInputType ) ,
521521 UpdateResponse ( UpdateResponseType ) ,
@@ -594,7 +594,7 @@ impl ___Type for __Type {
594594 Self :: Node ( x) => x. kind ( ) ,
595595 Self :: NodeInterface ( x) => x. kind ( ) ,
596596 Self :: InsertInput ( x) => x. kind ( ) ,
597- Self :: InsertOnConflictInput ( x) => x. kind ( ) ,
597+ Self :: OnConflictInput ( x) => x. kind ( ) ,
598598 Self :: InsertResponse ( x) => x. kind ( ) ,
599599 Self :: UpdateInput ( x) => x. kind ( ) ,
600600 Self :: UpdateResponse ( x) => x. kind ( ) ,
@@ -630,7 +630,7 @@ impl ___Type for __Type {
630630 Self :: Node ( x) => x. name ( ) ,
631631 Self :: NodeInterface ( x) => x. name ( ) ,
632632 Self :: InsertInput ( x) => x. name ( ) ,
633- Self :: InsertOnConflictInput ( x) => x. name ( ) ,
633+ Self :: OnConflictInput ( x) => x. name ( ) ,
634634 Self :: InsertResponse ( x) => x. name ( ) ,
635635 Self :: UpdateInput ( x) => x. name ( ) ,
636636 Self :: UpdateResponse ( x) => x. name ( ) ,
@@ -666,7 +666,7 @@ impl ___Type for __Type {
666666 Self :: Node ( x) => x. description ( ) ,
667667 Self :: NodeInterface ( x) => x. description ( ) ,
668668 Self :: InsertInput ( x) => x. description ( ) ,
669- Self :: InsertOnConflictInput ( x) => x. description ( ) ,
669+ Self :: OnConflictInput ( x) => x. description ( ) ,
670670 Self :: InsertResponse ( x) => x. description ( ) ,
671671 Self :: UpdateInput ( x) => x. description ( ) ,
672672 Self :: UpdateResponse ( x) => x. description ( ) ,
@@ -703,7 +703,7 @@ impl ___Type for __Type {
703703 Self :: Node ( x) => x. fields ( _include_deprecated) ,
704704 Self :: NodeInterface ( x) => x. fields ( _include_deprecated) ,
705705 Self :: InsertInput ( x) => x. fields ( _include_deprecated) ,
706- Self :: InsertOnConflictInput ( x) => x. fields ( _include_deprecated) ,
706+ Self :: OnConflictInput ( x) => x. fields ( _include_deprecated) ,
707707 Self :: InsertResponse ( x) => x. fields ( _include_deprecated) ,
708708 Self :: UpdateInput ( x) => x. fields ( _include_deprecated) ,
709709 Self :: UpdateResponse ( x) => x. fields ( _include_deprecated) ,
@@ -740,7 +740,7 @@ impl ___Type for __Type {
740740 Self :: Node ( x) => x. interfaces ( ) ,
741741 Self :: NodeInterface ( x) => x. interfaces ( ) ,
742742 Self :: InsertInput ( x) => x. interfaces ( ) ,
743- Self :: InsertOnConflictInput ( x) => x. interfaces ( ) ,
743+ Self :: OnConflictInput ( x) => x. interfaces ( ) ,
744744 Self :: InsertResponse ( x) => x. interfaces ( ) ,
745745 Self :: UpdateInput ( x) => x. interfaces ( ) ,
746746 Self :: UpdateResponse ( x) => x. interfaces ( ) ,
@@ -786,7 +786,7 @@ impl ___Type for __Type {
786786 Self :: Node ( x) => x. enum_values ( _include_deprecated) ,
787787 Self :: NodeInterface ( x) => x. enum_values ( _include_deprecated) ,
788788 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) ,
790790 Self :: InsertResponse ( x) => x. enum_values ( _include_deprecated) ,
791791 Self :: UpdateInput ( x) => x. enum_values ( _include_deprecated) ,
792792 Self :: UpdateResponse ( x) => x. enum_values ( _include_deprecated) ,
@@ -823,7 +823,7 @@ impl ___Type for __Type {
823823 Self :: Node ( x) => x. input_fields ( ) ,
824824 Self :: NodeInterface ( x) => x. input_fields ( ) ,
825825 Self :: InsertInput ( x) => x. input_fields ( ) ,
826- Self :: InsertOnConflictInput ( x) => x. input_fields ( ) ,
826+ Self :: OnConflictInput ( x) => x. input_fields ( ) ,
827827 Self :: InsertResponse ( x) => x. input_fields ( ) ,
828828 Self :: UpdateInput ( x) => x. input_fields ( ) ,
829829 Self :: UpdateResponse ( x) => x. input_fields ( ) ,
@@ -971,7 +971,7 @@ pub struct InsertResponseType {
971971}
972972
973973#[ derive( Clone , Debug , Eq , PartialEq , Hash ) ]
974- pub struct InsertOnConflictType {
974+ pub struct OnConflictType {
975975 pub table : Arc < Table > ,
976976 pub schema : Arc < __Schema > ,
977977}
@@ -1456,7 +1456,7 @@ impl ___Type for MutationType {
14561456 if table. has_upsert_support ( ) {
14571457 args. push ( __InputValue {
14581458 name_ : "onConflict" . to_string ( ) ,
1459- type_ : __Type:: InsertOnConflictInput ( InsertOnConflictType {
1459+ type_ : __Type:: OnConflictInput ( OnConflictType {
14601460 table : Arc :: clone ( table) ,
14611461 schema : Arc :: clone ( & self . schema ) ,
14621462 } ) ,
@@ -3162,7 +3162,7 @@ impl ___Type for InsertInputType {
31623162 }
31633163}
31643164
3165- impl ___Type for InsertOnConflictType {
3165+ impl ___Type for OnConflictType {
31663166 fn kind ( & self ) -> __TypeKind {
31673167 __TypeKind:: INPUT_OBJECT
31683168 }
@@ -4294,7 +4294,7 @@ impl __Schema {
42944294
42954295 // Used exclusively by onConflict
42964296 if table. has_upsert_support ( ) {
4297- types_. push ( __Type:: InsertOnConflictInput ( InsertOnConflictType {
4297+ types_. push ( __Type:: OnConflictInput ( OnConflictType {
42984298 table : Arc :: clone ( table) ,
42994299 schema : Arc :: clone ( & schema_rc) ,
43004300 } ) ) ;
0 commit comments