@@ -93,6 +93,7 @@ export type GqlDay = GqlCommentableInterface & {
9393 entries : Array < GqlEntry > ;
9494 id : Scalars [ 'ID' ] [ 'output' ] ;
9595 status ?: Maybe < GqlDayStatusEnum > ;
96+ status_split ?: Maybe < GqlDayStatusEnum > ;
9697} ;
9798
9899export type GqlDayStatusEnum =
@@ -125,13 +126,17 @@ export type GqlEntry = GqlCommentableInterface & {
125126 createdAt : Scalars [ 'String' ] [ 'output' ] ;
126127 id : Scalars [ 'ID' ] [ 'output' ] ;
127128 orderId : Scalars [ 'Int' ] [ 'output' ] ;
128- text : Scalars [ 'String' ] [ 'output' ] ;
129- time : Scalars [ 'Int' ] [ 'output' ] ;
129+ text ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
130+ text_split ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
131+ time ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
132+ time_split ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
130133} ;
131134
132135export type GqlEntryInput = {
133- text : Scalars [ 'String' ] [ 'input' ] ;
134- time : Scalars [ 'Int' ] [ 'input' ] ;
136+ text ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
137+ text_split ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
138+ time ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
139+ time_split ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
135140} ;
136141
137142export type GqlLaraConfig = {
@@ -389,6 +394,7 @@ export type GqlMutationUpdateCurrentUserArgs = {
389394export type GqlMutationUpdateDayArgs = {
390395 id : Scalars [ 'ID' ] [ 'input' ] ;
391396 status ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
397+ status_split ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
392398} ;
393399
394400
@@ -854,6 +860,7 @@ export type GqlDayResolvers<ContextType = Context, ParentType extends GqlResolve
854860 entries ?: Resolver < Array < GqlResolversTypes [ 'Entry' ] > , ParentType , ContextType > ;
855861 id ?: Resolver < GqlResolversTypes [ 'ID' ] , ParentType , ContextType > ;
856862 status ?: Resolver < Maybe < GqlResolversTypes [ 'DayStatusEnum' ] > , ParentType , ContextType > ;
863+ status_split ?: Resolver < Maybe < GqlResolversTypes [ 'DayStatusEnum' ] > , ParentType , ContextType > ;
857864 __isTypeOf ?: IsTypeOfResolverFn < ParentType , ContextType > ;
858865} > ;
859866
@@ -873,8 +880,10 @@ export type GqlEntryResolvers<ContextType = Context, ParentType extends GqlResol
873880 createdAt ?: Resolver < GqlResolversTypes [ 'String' ] , ParentType , ContextType > ;
874881 id ?: Resolver < GqlResolversTypes [ 'ID' ] , ParentType , ContextType > ;
875882 orderId ?: Resolver < GqlResolversTypes [ 'Int' ] , ParentType , ContextType > ;
876- text ?: Resolver < GqlResolversTypes [ 'String' ] , ParentType , ContextType > ;
877- time ?: Resolver < GqlResolversTypes [ 'Int' ] , ParentType , ContextType > ;
883+ text ?: Resolver < Maybe < GqlResolversTypes [ 'String' ] > , ParentType , ContextType > ;
884+ text_split ?: Resolver < Maybe < GqlResolversTypes [ 'String' ] > , ParentType , ContextType > ;
885+ time ?: Resolver < Maybe < GqlResolversTypes [ 'Int' ] > , ParentType , ContextType > ;
886+ time_split ?: Resolver < Maybe < GqlResolversTypes [ 'Int' ] > , ParentType , ContextType > ;
878887 __isTypeOf ?: IsTypeOfResolverFn < ParentType , ContextType > ;
879888} > ;
880889
0 commit comments