@@ -788,7 +788,7 @@ impl ___Type for __Type {
788788 Self :: Node ( x) => x. enum_values ( _include_deprecated) ,
789789 Self :: NodeInterface ( x) => x. enum_values ( _include_deprecated) ,
790790 Self :: InsertInput ( x) => x. enum_values ( _include_deprecated) ,
791- Self :: InsertOnConflictInput ( x) => x. enum_values ( ) ,
791+ Self :: InsertOnConflictInput ( x) => x. enum_values ( _include_deprecated ) ,
792792 Self :: InsertResponse ( x) => x. enum_values ( _include_deprecated) ,
793793 Self :: UpdateInput ( x) => x. enum_values ( _include_deprecated) ,
794794 Self :: UpdateResponse ( x) => x. enum_values ( _include_deprecated) ,
@@ -1454,17 +1454,9 @@ impl ___Type for MutationType {
14541454 } ,
14551455 __InputValue {
14561456 name_: "onConflict" . to_string( ) ,
1457- type_: __Type:: NonNull ( NonNullType {
1458- type_: Box :: new( __Type:: List ( ListType {
1459- type_: Box :: new( __Type:: NonNull ( NonNullType {
1460- type_: Box :: new( __Type:: InsertOnConflictInput (
1461- InsertOnConflictType {
1462- table: Arc :: clone( table) ,
1463- schema: Arc :: clone( & self . schema) ,
1464- } ,
1465- ) ) ,
1466- } ) ) ,
1467- } ) ) ,
1457+ type_: __Type:: InsertOnConflictInput ( InsertOnConflictType {
1458+ table: Arc :: clone( table) ,
1459+ schema: Arc :: clone( & self . schema) ,
14681460 } ) ,
14691461 description: None ,
14701462 default_value: None ,
@@ -3437,7 +3429,6 @@ impl ___Type for FuncCallResponseType {
34373429}
34383430
34393431use std:: str:: FromStr ;
3440- use std:: string:: ToString ;
34413432
34423433#[ derive( Clone , Copy , Debug ) ]
34433434pub enum FilterOp {
@@ -4155,7 +4146,7 @@ impl __Schema {
41554146 enum_ : EnumSource :: TableColumns ( Arc :: clone ( table) ) ,
41564147 schema : Arc :: clone ( & schema_rc) ,
41574148 } ) ) ;
4158- types_. push ( __Type:: InsertOnConflictType ( InsertOnConflictType {
4149+ types_. push ( __Type:: InsertOnConflictInput ( InsertOnConflictType {
41594150 table : Arc :: clone ( table) ,
41604151 schema : Arc :: clone ( & schema_rc) ,
41614152 } ) ) ;
0 commit comments