feat: function update flow re-introduced (#2410)

This commit is contained in:
Kristaps Fabians Geikins
2024-06-20 12:24:15 +03:00
committed by GitHub
parent 04dd67aa4f
commit 689bb4e941
17 changed files with 186 additions and 75 deletions
@@ -210,6 +210,8 @@ export type AutomateAuthCodePayloadTest = {
export type AutomateFunction = {
__typename?: 'AutomateFunction';
automationCount: Scalars['Int']['output'];
/** Only returned if user is a part of this speckle server */
creator?: Maybe<LimitedUser>;
description: Scalars['String']['output'];
id: Scalars['ID']['output'];
isFeatured: Scalars['Boolean']['output'];
@@ -4157,6 +4159,7 @@ export type AuthStrategyResolvers<ContextType = GraphQLContext, ParentType exten
export type AutomateFunctionResolvers<ContextType = GraphQLContext, ParentType extends ResolversParentTypes['AutomateFunction'] = ResolversParentTypes['AutomateFunction']> = {
automationCount?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
creator?: Resolver<Maybe<ResolversTypes['LimitedUser']>, ParentType, ContextType>;
description?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
id?: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
isFeatured?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;