chore: refacto NestJS in modules (#308)
* 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
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user