Cleanup obsolete data type in Schema.

This commit is contained in:
Jan Eitzinger 2021-05-03 10:23:30 +02:00
parent 836c1aea3a
commit 3e6fccd273

View File

@ -84,30 +84,6 @@ type Query {
tags(jobId: String): [JobTag!]! tags(jobId: String): [JobTag!]!
} }
input StartJobInput {
jobId: String!
userId: String!
projectId: String!
clusterId: String!
startTime: Time!
numNodes: Int!
}
input StopJobInput {
stopTime: Time!
}
input AddJobInput {
jobId: String!
userId: String!
projectId: String!
clusterId: String!
startTime: Time!
duration: Int!
numNodes: Int!
}
input JobFilterList { input JobFilterList {
list: [JobFilter] list: [JobFilter]
} }