feat(projects, pipeline): project detail page.
This commit is contained in:
@@ -66,7 +66,7 @@ export type Mutation = {
|
||||
updateProject: Project;
|
||||
removeProject: Scalars['Float'];
|
||||
createPipeline: Pipeline;
|
||||
modifyPipeline: Pipeline;
|
||||
updatePipeline: Pipeline;
|
||||
deletePipeline: Scalars['Float'];
|
||||
createPipelineTask: PipelineTask;
|
||||
};
|
||||
@@ -92,9 +92,8 @@ export type MutationCreatePipelineArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type MutationModifyPipelineArgs = {
|
||||
export type MutationUpdatePipelineArgs = {
|
||||
Pipeline: UpdatePipelineInput;
|
||||
id: Scalars['String'];
|
||||
};
|
||||
|
||||
|
||||
@@ -171,8 +170,8 @@ export type Query = {
|
||||
hello: Hello;
|
||||
projects: Array<Project>;
|
||||
project: Project;
|
||||
listPipelines: Array<Pipeline>;
|
||||
findPipeline: Pipeline;
|
||||
pipelines: Array<Pipeline>;
|
||||
pipeline: Pipeline;
|
||||
listPipelineTaskByPipelineId: Array<PipelineTask>;
|
||||
findPipelineTask: PipelineTask;
|
||||
};
|
||||
@@ -183,12 +182,12 @@ export type QueryProjectArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type QueryListPipelinesArgs = {
|
||||
export type QueryPipelinesArgs = {
|
||||
projectId?: Maybe<Scalars['String']>;
|
||||
};
|
||||
|
||||
|
||||
export type QueryFindPipelineArgs = {
|
||||
export type QueryPipelineArgs = {
|
||||
id: Scalars['String'];
|
||||
};
|
||||
|
||||
@@ -237,6 +236,7 @@ export type UpdatePipelineInput = {
|
||||
branch: Scalars['String'];
|
||||
name: Scalars['String'];
|
||||
workUnitMetadata: WorkUnitMetadataInput;
|
||||
id: Scalars['String'];
|
||||
};
|
||||
|
||||
export type UpdateProjectInput = {
|
||||
|
Reference in New Issue
Block a user