Files
twenty_crm/server/src/api/@generated/pipeline-progress/pipeline-progress-create-or-connect-without-workspace.input.ts
Charles Bochet 5381e28253 Add workspace scoping to pipeline progress and expose findManyPipelineeProgress on graphql (#292)
Add workspace scoping to pipeline progress and expose findManyPipelineProgress on graphql
2023-06-14 17:05:15 +02:00

17 lines
776 B
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import { PipelineProgressWhereUniqueInput } from './pipeline-progress-where-unique.input';
import { Type } from 'class-transformer';
import { PipelineProgressCreateWithoutWorkspaceInput } from './pipeline-progress-create-without-workspace.input';
@InputType()
export class PipelineProgressCreateOrConnectWithoutWorkspaceInput {
@Field(() => PipelineProgressWhereUniqueInput, { nullable: false })
@Type(() => PipelineProgressWhereUniqueInput)
where!: PipelineProgressWhereUniqueInput;
@Field(() => PipelineProgressCreateWithoutWorkspaceInput, { nullable: false })
@Type(() => PipelineProgressCreateWithoutWorkspaceInput)
create!: PipelineProgressCreateWithoutWorkspaceInput;
}