Remove dead code linked to quick actions (#6587)

Removing dead code, we'll take another approach to build this
This commit is contained in:
Félix Malfait
2024-08-09 11:09:26 +02:00
committed by GitHub
parent a2a5ab488c
commit 7e01843aaf
21 changed files with 33 additions and 655 deletions

View File

@ -50,9 +50,6 @@ describe('getResolverArgs', () => {
deleteOne: {
id: { type: GraphQLID, isNullable: false },
},
executeQuickActionOnOne: {
id: { type: GraphQLID, isNullable: false },
},
};
// Test each resolver type

View File

@ -1,4 +1,4 @@
import { GraphQLString, GraphQLInt, GraphQLID, GraphQLBoolean } from 'graphql';
import { GraphQLBoolean, GraphQLID, GraphQLInt, GraphQLString } from 'graphql';
import { WorkspaceResolverBuilderMethodNames } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface';
import { ArgMetadata } from 'src/engine/api/graphql/workspace-schema-builder/interfaces/param-metadata.interface';
@ -105,13 +105,6 @@ export const getResolverArgs = (
isNullable: false,
},
};
case 'executeQuickActionOnOne':
return {
id: {
type: GraphQLID,
isNullable: false,
},
};
case 'updateMany':
return {
data: {