Rename pipeline schema (#184)

This commit is contained in:
Charles Bochet
2023-06-02 12:39:58 +02:00
committed by GitHub
parent 0609994477
commit f23bbb9a68
132 changed files with 2825 additions and 138 deletions

View File

@ -0,0 +1,50 @@
import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import { StringWithAggregatesFilter } from '../prisma/string-with-aggregates-filter.input';
import { DateTimeWithAggregatesFilter } from '../prisma/date-time-with-aggregates-filter.input';
import { DateTimeNullableWithAggregatesFilter } from '../prisma/date-time-nullable-with-aggregates-filter.input';
import { EnumPipelineProgressableTypeWithAggregatesFilter } from '../prisma/enum-pipeline-progressable-type-with-aggregates-filter.input';
@InputType()
export class PipelineProgressScalarWhereWithAggregatesInput {
@Field(() => [PipelineProgressScalarWhereWithAggregatesInput], {
nullable: true,
})
AND?: Array<PipelineProgressScalarWhereWithAggregatesInput>;
@Field(() => [PipelineProgressScalarWhereWithAggregatesInput], {
nullable: true,
})
OR?: Array<PipelineProgressScalarWhereWithAggregatesInput>;
@Field(() => [PipelineProgressScalarWhereWithAggregatesInput], {
nullable: true,
})
NOT?: Array<PipelineProgressScalarWhereWithAggregatesInput>;
@Field(() => StringWithAggregatesFilter, { nullable: true })
id?: StringWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, { nullable: true })
createdAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeWithAggregatesFilter, { nullable: true })
updatedAt?: DateTimeWithAggregatesFilter;
@Field(() => DateTimeNullableWithAggregatesFilter, { nullable: true })
deletedAt?: DateTimeNullableWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
pipelineId?: StringWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
pipelineStageId?: StringWithAggregatesFilter;
@Field(() => EnumPipelineProgressableTypeWithAggregatesFilter, {
nullable: true,
})
associableType?: EnumPipelineProgressableTypeWithAggregatesFilter;
@Field(() => StringWithAggregatesFilter, { nullable: true })
associableId?: StringWithAggregatesFilter;
}