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
28 lines
819 B
TypeScript
28 lines
819 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import { SortOrder } from '../prisma/sort-order.enum';
|
|
|
|
@InputType()
|
|
export class CommentThreadTargetMaxOrderByAggregateInput {
|
|
@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;
|
|
}
|