Files
twenty/server/src/api/@generated/pipeline-association/update-one-pipeline-association.args.ts
T
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

17 lines
700 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ArgsType } from '@nestjs/graphql';
import { PipelineAssociationUpdateInput } from './pipeline-association-update.input';
import { Type } from 'class-transformer';
import { PipelineAssociationWhereUniqueInput } from './pipeline-association-where-unique.input';
@ArgsType()
export class UpdateOnePipelineAssociationArgs {
@Field(() => PipelineAssociationUpdateInput, { nullable: false })
@Type(() => PipelineAssociationUpdateInput)
data!: PipelineAssociationUpdateInput;
@Field(() => PipelineAssociationWhereUniqueInput, { nullable: false })
@Type(() => PipelineAssociationWhereUniqueInput)
where!: PipelineAssociationWhereUniqueInput;
}