2cd081234f
* chore: wip refacto in modules * fix: rollback port * fix: jwt guard in wrong folder * chore: rename folder exception-filter in filters * fix: tests are running * fix: excessive stack depth comparing types * fix: auth issue * chore: move createUser in UserService * fix: test * fix: guards * fix: jwt guard don't handle falsy user
39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ArgsType } from '@nestjs/graphql';
|
|
import { PipelineWhereInput } from './pipeline-where.input';
|
|
import { Type } from 'class-transformer';
|
|
import { PipelineOrderByWithRelationInput } from './pipeline-order-by-with-relation.input';
|
|
import { PipelineWhereUniqueInput } from './pipeline-where-unique.input';
|
|
import { Int } from '@nestjs/graphql';
|
|
import { PipelineCountAggregateInput } from './pipeline-count-aggregate.input';
|
|
import { PipelineMinAggregateInput } from './pipeline-min-aggregate.input';
|
|
import { PipelineMaxAggregateInput } from './pipeline-max-aggregate.input';
|
|
|
|
@ArgsType()
|
|
export class PipelineAggregateArgs {
|
|
@Field(() => PipelineWhereInput, { nullable: true })
|
|
@Type(() => PipelineWhereInput)
|
|
where?: PipelineWhereInput;
|
|
|
|
@Field(() => [PipelineOrderByWithRelationInput], { nullable: true })
|
|
orderBy?: Array<PipelineOrderByWithRelationInput>;
|
|
|
|
@Field(() => PipelineWhereUniqueInput, { nullable: true })
|
|
cursor?: PipelineWhereUniqueInput;
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
take?: number;
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
skip?: number;
|
|
|
|
@Field(() => PipelineCountAggregateInput, { nullable: true })
|
|
_count?: PipelineCountAggregateInput;
|
|
|
|
@Field(() => PipelineMinAggregateInput, { nullable: true })
|
|
_min?: PipelineMinAggregateInput;
|
|
|
|
@Field(() => PipelineMaxAggregateInput, { nullable: true })
|
|
_max?: PipelineMaxAggregateInput;
|
|
}
|