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 { WorkspaceMemberUpdateManyWithoutWorkspaceNestedInput } from '../workspa
|
||||
import { CompanyUpdateManyWithoutWorkspaceNestedInput } from '../company/company-update-many-without-workspace-nested.input';
|
||||
import { PersonUpdateManyWithoutWorkspaceNestedInput } from '../person/person-update-many-without-workspace-nested.input';
|
||||
import { CommentUpdateManyWithoutWorkspaceNestedInput } from '../comment/comment-update-many-without-workspace-nested.input';
|
||||
import { PipelineUpdateManyWithoutWorkspaceNestedInput } from '../pipeline/pipeline-update-many-without-workspace-nested.input';
|
||||
import { PipelineStageUpdateManyWithoutWorkspaceNestedInput } from '../pipeline-stage/pipeline-stage-update-many-without-workspace-nested.input';
|
||||
|
||||
@InputType()
|
||||
export class WorkspaceUpdateWithoutCommentThreadsInput {
|
||||
@ -45,4 +47,14 @@ export class WorkspaceUpdateWithoutCommentThreadsInput {
|
||||
|
||||
@Field(() => CommentUpdateManyWithoutWorkspaceNestedInput, { nullable: true })
|
||||
comments?: CommentUpdateManyWithoutWorkspaceNestedInput;
|
||||
|
||||
@Field(() => PipelineUpdateManyWithoutWorkspaceNestedInput, {
|
||||
nullable: true,
|
||||
})
|
||||
pipelines?: PipelineUpdateManyWithoutWorkspaceNestedInput;
|
||||
|
||||
@Field(() => PipelineStageUpdateManyWithoutWorkspaceNestedInput, {
|
||||
nullable: true,
|
||||
})
|
||||
pipelineStages?: PipelineStageUpdateManyWithoutWorkspaceNestedInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user