* Lowercase all relations in prisma/graphql schema * Add Comments data model and graphql schema * Make comments availalble on the api through resolvers and guard them * Update front graphql schema * Fix PR
47 lines
2.0 KiB
TypeScript
47 lines
2.0 KiB
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ArgsType } from '@nestjs/graphql';
|
|
import { CommentThreadTargetWhereInput } from './comment-thread-target-where.input';
|
|
import { Type } from 'class-transformer';
|
|
import { CommentThreadTargetOrderByWithAggregationInput } from './comment-thread-target-order-by-with-aggregation.input';
|
|
import { CommentThreadTargetScalarFieldEnum } from './comment-thread-target-scalar-field.enum';
|
|
import { CommentThreadTargetScalarWhereWithAggregatesInput } from './comment-thread-target-scalar-where-with-aggregates.input';
|
|
import { Int } from '@nestjs/graphql';
|
|
import { CommentThreadTargetCountAggregateInput } from './comment-thread-target-count-aggregate.input';
|
|
import { CommentThreadTargetMinAggregateInput } from './comment-thread-target-min-aggregate.input';
|
|
import { CommentThreadTargetMaxAggregateInput } from './comment-thread-target-max-aggregate.input';
|
|
|
|
@ArgsType()
|
|
export class CommentThreadTargetGroupByArgs {
|
|
@Field(() => CommentThreadTargetWhereInput, { nullable: true })
|
|
@Type(() => CommentThreadTargetWhereInput)
|
|
where?: CommentThreadTargetWhereInput;
|
|
|
|
@Field(() => [CommentThreadTargetOrderByWithAggregationInput], {
|
|
nullable: true,
|
|
})
|
|
orderBy?: Array<CommentThreadTargetOrderByWithAggregationInput>;
|
|
|
|
@Field(() => [CommentThreadTargetScalarFieldEnum], { nullable: false })
|
|
by!: Array<keyof typeof CommentThreadTargetScalarFieldEnum>;
|
|
|
|
@Field(() => CommentThreadTargetScalarWhereWithAggregatesInput, {
|
|
nullable: true,
|
|
})
|
|
having?: CommentThreadTargetScalarWhereWithAggregatesInput;
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
take?: number;
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
skip?: number;
|
|
|
|
@Field(() => CommentThreadTargetCountAggregateInput, { nullable: true })
|
|
_count?: CommentThreadTargetCountAggregateInput;
|
|
|
|
@Field(() => CommentThreadTargetMinAggregateInput, { nullable: true })
|
|
_min?: CommentThreadTargetMinAggregateInput;
|
|
|
|
@Field(() => CommentThreadTargetMaxAggregateInput, { nullable: true })
|
|
_max?: CommentThreadTargetMaxAggregateInput;
|
|
}
|