a3a3c1924f
* 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
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import { SortOrder } from '../prisma/sort-order.enum';
|
|
import { CommentThreadOrderByWithRelationInput } from '../comment-thread/comment-thread-order-by-with-relation.input';
|
|
|
|
@InputType()
|
|
export class CommentThreadTargetOrderByWithRelationInput {
|
|
@Field(() => SortOrder, { nullable: true })
|
|
id?: keyof typeof SortOrder;
|
|
|
|
@Field(() => SortOrder, { nullable: true })
|
|
createdAt?: keyof typeof SortOrder;
|
|
|
|
@Field(() => SortOrder, { nullable: true })
|
|
updatedAt?: keyof typeof SortOrder;
|
|
|
|
@Field(() => SortOrder, { nullable: true })
|
|
deletedAt?: keyof typeof SortOrder;
|
|
|
|
@Field(() => SortOrder, { nullable: true })
|
|
commentThreadId?: keyof typeof SortOrder;
|
|
|
|
@Field(() => SortOrder, { nullable: true })
|
|
commentableType?: keyof typeof SortOrder;
|
|
|
|
@Field(() => SortOrder, { nullable: true })
|
|
commentableId?: keyof typeof SortOrder;
|
|
|
|
@Field(() => CommentThreadOrderByWithRelationInput, { nullable: true })
|
|
commentThread?: CommentThreadOrderByWithRelationInput;
|
|
}
|