import { InputType } from '@nestjs/graphql'; import { IDField } from '@ptc-org/nestjs-query-graphql'; import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars'; @InputType() export class DeleteOneRelationInput { @IDField(() => UUIDScalarType, { description: 'The id of the relation to delete.', }) id!: string; }