fix: standardize GraphQL schema UUID field types (#13550)
Closes [#1264](https://github.com/twentyhq/core-team-issues/issues/1264)
This commit is contained in:
+4
-2
@@ -1,8 +1,10 @@
|
||||
import { InputType, Field, ID } from '@nestjs/graphql';
|
||||
import { Field, InputType } from '@nestjs/graphql';
|
||||
|
||||
import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars';
|
||||
|
||||
@InputType()
|
||||
export class RemoteTableInput {
|
||||
@Field(() => ID)
|
||||
@Field(() => UUIDScalarType)
|
||||
remoteServerId: string;
|
||||
|
||||
@Field(() => String)
|
||||
|
||||
Reference in New Issue
Block a user