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
18 lines
697 B
TypeScript
18 lines
697 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ObjectType } from '@nestjs/graphql';
|
|
import { CommentThreadCountAggregate } from './comment-thread-count-aggregate.output';
|
|
import { CommentThreadMinAggregate } from './comment-thread-min-aggregate.output';
|
|
import { CommentThreadMaxAggregate } from './comment-thread-max-aggregate.output';
|
|
|
|
@ObjectType()
|
|
export class AggregateCommentThread {
|
|
@Field(() => CommentThreadCountAggregate, { nullable: true })
|
|
_count?: CommentThreadCountAggregate;
|
|
|
|
@Field(() => CommentThreadMinAggregate, { nullable: true })
|
|
_min?: CommentThreadMinAggregate;
|
|
|
|
@Field(() => CommentThreadMaxAggregate, { nullable: true })
|
|
_max?: CommentThreadMaxAggregate;
|
|
}
|