From 3e6fccd273d3263a13541293fc71e500a83193bb Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Mon, 3 May 2021 10:23:30 +0200 Subject: [PATCH] Cleanup obsolete data type in Schema. --- graph/schema.graphqls | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/graph/schema.graphqls b/graph/schema.graphqls index 21ab748..d091bce 100644 --- a/graph/schema.graphqls +++ b/graph/schema.graphqls @@ -84,30 +84,6 @@ type Query { 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 { list: [JobFilter] }