Fix path errors. Fix data schema.

This commit is contained in:
Jan Eitzinger
2021-03-31 08:50:53 +02:00
parent b7970585ea
commit 9940c44f2b
7 changed files with 4397 additions and 17 deletions

View File

@@ -15,12 +15,6 @@ type Query {
jobsStatistics(filter: JobFilterList): JobsStatistics!
}
type Mutation {
startJob(input: StartJobInput!): Job!
stopJob(input: StopJobInput!): Job!
addJob(input: AddJobInput!): Job!
}
input StartJobInput {
jobId: String!
userId: String!
@@ -114,7 +108,7 @@ type JobsStatistics {
}
input PageRequest {
itensPerPage: Int
itemsPerPage: Int
page: Int
}