Skip to content

Commit

Permalink
feat:add a 'namespace' parameter to the data processing API interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
王鑫彪 authored and Abirdcfly committed Dec 8, 2023
1 parent c9ea490 commit fdc315e
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 4 deletions.
106 changes: 103 additions & 3 deletions graphql-server/go-server/graph/generated/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion graphql-server/go-server/graph/generated/models_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions graphql-server/go-server/graph/schema/dataprocessing.gql
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ query dataProcessDetails($input: DataProcessDetailsInput){
file_num
start_time
end_time
creator
config {
name
description
Expand Down
5 changes: 5 additions & 0 deletions graphql-server/go-server/graph/schema/dataprocessing.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ input AllDataProcessListByPageInput {
pageIndex: Int!
pageSize: Int!
keyword: String!
namespace: String!
}

input AllDataProcessListByCountInput {
keyword: String!
namespace: String!
}

input AddDataProcessInput {
Expand All @@ -41,6 +43,8 @@ input AddDataProcessInput {
data_process_config_info: [DataProcessConfigItem!]
bucket_name: String!
version_data_set_name: String!
namespace: String!
creator: String!
}

# 文件条目
Expand Down Expand Up @@ -146,6 +150,7 @@ type DataProcessDetailsItem {
file_num: Int!
start_time: String!
end_time: String!
creator: String!
config: [DataProcessConfig!]
}

Expand Down

0 comments on commit fdc315e

Please sign in to comment.