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:
Charles Bochet
2023-06-02 11:20:21 +02:00
committed by GitHub
parent bf3097500a
commit 2395f791c8
335 changed files with 8371 additions and 428 deletions

View File

@ -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;
}