Add updatesSince API resolver
This commit is contained in:
@ -2183,7 +2183,7 @@ export type UpdateUserSuccess = {
|
||||
|
||||
export type UpdatesSinceError = {
|
||||
__typename?: 'UpdatesSinceError';
|
||||
errorCodes?: Maybe<Array<UpdatesSinceErrorCode>>;
|
||||
errorCodes: Array<UpdatesSinceErrorCode>;
|
||||
};
|
||||
|
||||
export enum UpdatesSinceErrorCode {
|
||||
@ -4339,7 +4339,7 @@ export type UpdateUserSuccessResolvers<ContextType = ResolverContext, ParentType
|
||||
};
|
||||
|
||||
export type UpdatesSinceErrorResolvers<ContextType = ResolverContext, ParentType extends ResolversParentTypes['UpdatesSinceError'] = ResolversParentTypes['UpdatesSinceError']> = {
|
||||
errorCodes?: Resolver<Maybe<Array<ResolversTypes['UpdatesSinceErrorCode']>>, ParentType, ContextType>;
|
||||
errorCodes?: Resolver<Array<ResolversTypes['UpdatesSinceErrorCode']>, ParentType, ContextType>;
|
||||
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
||||
};
|
||||
|
||||
|
||||
@ -1678,7 +1678,7 @@ type UpdateUserSuccess {
|
||||
}
|
||||
|
||||
type UpdatesSinceError {
|
||||
errorCodes: [UpdatesSinceErrorCode!]
|
||||
errorCodes: [UpdatesSinceErrorCode!]!
|
||||
}
|
||||
|
||||
enum UpdatesSinceErrorCode {
|
||||
|
||||
Reference in New Issue
Block a user