Files
twenty_crm/server/src/api/@generated/pipeline-association/pipeline-association-upsert-with-where-unique-without-pipeline.input.ts
Charles Bochet 2395f791c8 Add Pipelines models in server (#182)
* Hide workspace and refresh token from schema

* Add pipe models and migrations

* Add seeds

* Update FE graphql schema
2023-06-02 11:20:21 +02:00

26 lines
1.1 KiB
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import { PipelineAssociationWhereUniqueInput } from './pipeline-association-where-unique.input';
import { Type } from 'class-transformer';
import { PipelineAssociationUpdateWithoutPipelineInput } from './pipeline-association-update-without-pipeline.input';
import { PipelineAssociationCreateWithoutPipelineInput } from './pipeline-association-create-without-pipeline.input';
@InputType()
export class PipelineAssociationUpsertWithWhereUniqueWithoutPipelineInput {
@Field(() => PipelineAssociationWhereUniqueInput, { nullable: false })
@Type(() => PipelineAssociationWhereUniqueInput)
where!: PipelineAssociationWhereUniqueInput;
@Field(() => PipelineAssociationUpdateWithoutPipelineInput, {
nullable: false,
})
@Type(() => PipelineAssociationUpdateWithoutPipelineInput)
update!: PipelineAssociationUpdateWithoutPipelineInput;
@Field(() => PipelineAssociationCreateWithoutPipelineInput, {
nullable: false,
})
@Type(() => PipelineAssociationCreateWithoutPipelineInput)
create!: PipelineAssociationCreateWithoutPipelineInput;
}