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:
@ -0,0 +1,36 @@
|
||||
import { Field } from '@nestjs/graphql';
|
||||
import { InputType } from '@nestjs/graphql';
|
||||
import { PipelineAssociableType } from '../pipeline/pipeline-associable-type.enum';
|
||||
import { PipelineCreateNestedOneWithoutPipelineAssociationsInput } from '../pipeline/pipeline-create-nested-one-without-pipeline-associations.input';
|
||||
import { PipelineStageCreateNestedOneWithoutPipelineAssociationsInput } from '../pipeline-stage/pipeline-stage-create-nested-one-without-pipeline-associations.input';
|
||||
|
||||
@InputType()
|
||||
export class PipelineAssociationCreateInput {
|
||||
@Field(() => String, { nullable: false })
|
||||
id!: string;
|
||||
|
||||
@Field(() => Date, { nullable: true })
|
||||
createdAt?: Date | string;
|
||||
|
||||
@Field(() => Date, { nullable: true })
|
||||
updatedAt?: Date | string;
|
||||
|
||||
@Field(() => Date, { nullable: true })
|
||||
deletedAt?: Date | string;
|
||||
|
||||
@Field(() => PipelineAssociableType, { nullable: false })
|
||||
associableType!: keyof typeof PipelineAssociableType;
|
||||
|
||||
@Field(() => String, { nullable: false })
|
||||
associableId!: string;
|
||||
|
||||
@Field(() => PipelineCreateNestedOneWithoutPipelineAssociationsInput, {
|
||||
nullable: false,
|
||||
})
|
||||
pipeline!: PipelineCreateNestedOneWithoutPipelineAssociationsInput;
|
||||
|
||||
@Field(() => PipelineStageCreateNestedOneWithoutPipelineAssociationsInput, {
|
||||
nullable: false,
|
||||
})
|
||||
pipelineStage!: PipelineStageCreateNestedOneWithoutPipelineAssociationsInput;
|
||||
}
|
||||
Reference in New Issue
Block a user