Refactor graphql query runner and add mutation resolvers (#7418)
Fixes https://github.com/twentyhq/twenty/issues/6859 This PR adds all the remaining resolvers for - updateOne/updateMany - createOne/createMany - deleteOne/deleteMany - destroyOne - restoreMany Also - refactored the graphql-query-runner to be able to add other resolvers without too much boilerplate. - add missing events that were not sent anymore as well as webhooks - make resolver injectable so they can inject other services as well - use objectMetadataMap from cache instead of computing it multiple time - various fixes (mutation not correctly parsing JSON, relationHelper fetching data with empty ids set, ...) Next steps: - Wrapping query builder to handle DB events properly - Move webhook emitters to db event listener - Add pagination where it's missing (findDuplicates, nested relations, etc...)
This commit is contained in:
@ -5,12 +5,12 @@ export class AddIndexType1725893697807 implements MigrationInterface {
|
||||
|
||||
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||
await queryRunner.query(
|
||||
`CREATE TYPE metadata."indextype_enum" AS ENUM ('BTREE', 'GIN')`,
|
||||
`CREATE TYPE "metadata"."indexMetadata_indextype_enum" AS ENUM('BTREE', 'GIN')`,
|
||||
);
|
||||
|
||||
await queryRunner.query(`
|
||||
ALTER TABLE metadata."indexMetadata"
|
||||
ADD COLUMN "indexType" metadata."indextype_enum" NOT NULL DEFAULT 'BTREE';
|
||||
ADD COLUMN "indexType" metadata."indexMetadata_indextype_enum" NOT NULL DEFAULT 'BTREE';
|
||||
`);
|
||||
}
|
||||
|
||||
@ -19,6 +19,8 @@ export class AddIndexType1725893697807 implements MigrationInterface {
|
||||
ALTER TABLE metadata."indexMetadata" DROP COLUMN "indexType"
|
||||
`);
|
||||
|
||||
await queryRunner.query(`DROP TYPE metadata."indextype_enum"`);
|
||||
await queryRunner.query(
|
||||
`DROP TYPE metadata."indexMetadata_indextype_enum"`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user