Clean server post refactor to remove Hasura (#156)
* Clean BE post refactor to remove Hasura * Add server CI
This commit is contained in:
+16
-17
@@ -6,28 +6,27 @@ import { WorkspaceOrderByWithRelationInput } from '../workspace/workspace-order-
|
||||
|
||||
@InputType()
|
||||
export class WorkspaceMemberOrderByWithRelationInput {
|
||||
@Field(() => SortOrder, { nullable: true })
|
||||
id?: keyof typeof SortOrder;
|
||||
|
||||
@Field(() => SortOrder, {nullable:true})
|
||||
id?: keyof typeof SortOrder;
|
||||
@Field(() => SortOrder, { nullable: true })
|
||||
createdAt?: keyof typeof SortOrder;
|
||||
|
||||
@Field(() => SortOrder, {nullable:true})
|
||||
createdAt?: keyof typeof SortOrder;
|
||||
@Field(() => SortOrder, { nullable: true })
|
||||
updatedAt?: keyof typeof SortOrder;
|
||||
|
||||
@Field(() => SortOrder, {nullable:true})
|
||||
updatedAt?: keyof typeof SortOrder;
|
||||
@Field(() => SortOrder, { nullable: true })
|
||||
deletedAt?: keyof typeof SortOrder;
|
||||
|
||||
@Field(() => SortOrder, {nullable:true})
|
||||
deletedAt?: keyof typeof SortOrder;
|
||||
@Field(() => SortOrder, { nullable: true })
|
||||
userId?: keyof typeof SortOrder;
|
||||
|
||||
@Field(() => SortOrder, {nullable:true})
|
||||
userId?: keyof typeof SortOrder;
|
||||
@Field(() => SortOrder, { nullable: true })
|
||||
workspaceId?: keyof typeof SortOrder;
|
||||
|
||||
@Field(() => SortOrder, {nullable:true})
|
||||
workspaceId?: keyof typeof SortOrder;
|
||||
@Field(() => UserOrderByWithRelationInput, { nullable: true })
|
||||
user?: UserOrderByWithRelationInput;
|
||||
|
||||
@Field(() => UserOrderByWithRelationInput, {nullable:true})
|
||||
user?: UserOrderByWithRelationInput;
|
||||
|
||||
@Field(() => WorkspaceOrderByWithRelationInput, {nullable:true})
|
||||
workspace?: WorkspaceOrderByWithRelationInput;
|
||||
@Field(() => WorkspaceOrderByWithRelationInput, { nullable: true })
|
||||
workspace?: WorkspaceOrderByWithRelationInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user