* 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
23 lines
643 B
TypeScript
23 lines
643 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import { SortOrder } from '../prisma/sort-order.enum';
|
|
import { HideField } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class CommentThreadMinOrderByAggregateInput {
|
|
@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;
|
|
|
|
@HideField()
|
|
workspaceId?: keyof typeof SortOrder;
|
|
}
|