## Context The goal is to replace pg_graphql with our own ORM wrapper (TwentyORM). This PR tries to add some parsing logic to convert graphql requests to send to the ORM to replace pg_graphql implementation. --------- Co-authored-by: Charles Bochet <charles@twenty.com>
143 lines
3.6 KiB
TypeScript
143 lines
3.6 KiB
TypeScript
import {
|
|
Field,
|
|
HideField,
|
|
ObjectType,
|
|
registerEnumType,
|
|
} from '@nestjs/graphql';
|
|
|
|
import {
|
|
Authorize,
|
|
FilterableField,
|
|
IDField,
|
|
QueryOptions,
|
|
Relation,
|
|
} from '@ptc-org/nestjs-query-graphql';
|
|
import {
|
|
IsBoolean,
|
|
IsDateString,
|
|
IsEnum,
|
|
IsNotEmpty,
|
|
IsOptional,
|
|
IsString,
|
|
IsUUID,
|
|
Validate,
|
|
} from 'class-validator';
|
|
import { GraphQLJSON } from 'graphql-type-json';
|
|
|
|
import { FieldMetadataDefaultValue } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata-default-value.interface';
|
|
import { FieldMetadataOptions } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata-options.interface';
|
|
import { FieldMetadataSettings } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata-settings.interface';
|
|
|
|
import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars';
|
|
import { IsValidMetadataName } from 'src/engine/decorators/metadata/is-valid-metadata-name.decorator';
|
|
import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity';
|
|
import { IsFieldMetadataDefaultValue } from 'src/engine/metadata-modules/field-metadata/validators/is-field-metadata-default-value.validator';
|
|
import { IsFieldMetadataOptions } from 'src/engine/metadata-modules/field-metadata/validators/is-field-metadata-options.validator';
|
|
import { ObjectMetadataDTO } from 'src/engine/metadata-modules/object-metadata/dtos/object-metadata.dto';
|
|
import { RelationMetadataDTO } from 'src/engine/metadata-modules/relation-metadata/dtos/relation-metadata.dto';
|
|
|
|
registerEnumType(FieldMetadataType, {
|
|
name: 'FieldMetadataType',
|
|
description: 'Type of the field',
|
|
});
|
|
|
|
@ObjectType('field')
|
|
@Authorize({
|
|
authorize: (context: any) => ({
|
|
workspaceId: { eq: context?.req?.user?.workspace?.id },
|
|
}),
|
|
})
|
|
@QueryOptions({
|
|
defaultResultSize: 10,
|
|
disableSort: true,
|
|
maxResultsSize: 1000,
|
|
})
|
|
@Relation('toRelationMetadata', () => RelationMetadataDTO, {
|
|
nullable: true,
|
|
})
|
|
@Relation('fromRelationMetadata', () => RelationMetadataDTO, {
|
|
nullable: true,
|
|
})
|
|
@Relation('object', () => ObjectMetadataDTO, {
|
|
nullable: true,
|
|
})
|
|
export class FieldMetadataDTO<
|
|
T extends FieldMetadataType | 'default' = 'default',
|
|
> {
|
|
@IsUUID()
|
|
@IsNotEmpty()
|
|
@IDField(() => UUIDScalarType)
|
|
id: string;
|
|
|
|
@IsEnum(FieldMetadataType)
|
|
@IsNotEmpty()
|
|
@Field(() => FieldMetadataType)
|
|
type: FieldMetadataType;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@Field()
|
|
@IsValidMetadataName()
|
|
name: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@Field()
|
|
label: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
description?: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
icon?: string;
|
|
|
|
@IsBoolean()
|
|
@IsOptional()
|
|
@FilterableField({ nullable: true })
|
|
isCustom?: boolean;
|
|
|
|
@IsBoolean()
|
|
@IsOptional()
|
|
@FilterableField({ nullable: true })
|
|
isActive?: boolean;
|
|
|
|
@IsBoolean()
|
|
@IsOptional()
|
|
@FilterableField({ nullable: true })
|
|
isSystem?: boolean;
|
|
|
|
@IsBoolean()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
isNullable?: boolean;
|
|
|
|
@Validate(IsFieldMetadataDefaultValue)
|
|
@IsOptional()
|
|
@Field(() => GraphQLJSON, { nullable: true })
|
|
defaultValue?: FieldMetadataDefaultValue<T>;
|
|
|
|
@Validate(IsFieldMetadataOptions)
|
|
@IsOptional()
|
|
@Field(() => GraphQLJSON, { nullable: true })
|
|
options?: FieldMetadataOptions<T>;
|
|
|
|
@IsOptional()
|
|
@Field(() => GraphQLJSON, { nullable: true })
|
|
settings?: FieldMetadataSettings<T>;
|
|
|
|
@HideField()
|
|
workspaceId: string;
|
|
|
|
@IsDateString()
|
|
@Field()
|
|
createdAt: Date;
|
|
|
|
@IsDateString()
|
|
@Field()
|
|
updatedAt: Date;
|
|
}
|