Add Pipelines models in server (#182)
* Hide workspace and refresh token from schema * Add pipe models and migrations * Add seeds * Update FE graphql schema
This commit is contained in:
@ -8,6 +8,8 @@ import { WorkspaceMemberUncheckedUpdateManyWithoutWorkspaceNestedInput } from '.
|
||||
import { CompanyUncheckedUpdateManyWithoutWorkspaceNestedInput } from '../company/company-unchecked-update-many-without-workspace-nested.input';
|
||||
import { PersonUncheckedUpdateManyWithoutWorkspaceNestedInput } from '../person/person-unchecked-update-many-without-workspace-nested.input';
|
||||
import { CommentUncheckedUpdateManyWithoutWorkspaceNestedInput } from '../comment/comment-unchecked-update-many-without-workspace-nested.input';
|
||||
import { PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput } from '../pipeline/pipeline-unchecked-update-many-without-workspace-nested.input';
|
||||
import { PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput } from '../pipeline-stage/pipeline-stage-unchecked-update-many-without-workspace-nested.input';
|
||||
|
||||
@InputType()
|
||||
export class WorkspaceUncheckedUpdateWithoutCommentThreadsInput {
|
||||
@ -51,4 +53,14 @@ export class WorkspaceUncheckedUpdateWithoutCommentThreadsInput {
|
||||
nullable: true,
|
||||
})
|
||||
comments?: CommentUncheckedUpdateManyWithoutWorkspaceNestedInput;
|
||||
|
||||
@Field(() => PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput, {
|
||||
nullable: true,
|
||||
})
|
||||
pipelines?: PipelineUncheckedUpdateManyWithoutWorkspaceNestedInput;
|
||||
|
||||
@Field(() => PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput, {
|
||||
nullable: true,
|
||||
})
|
||||
pipelineStages?: PipelineStageUncheckedUpdateManyWithoutWorkspaceNestedInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user