From aa8bdf5eb2b620b85c155a1cd74ab72f3c3f254d Mon Sep 17 00:00:00 2001 From: JUDIT GRESKOVITS Date: Wed, 17 May 2017 12:12:56 +0100 Subject: [PATCH] Update schema w missing bits --- spikes/graphql/graphql-server/src/schema.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/spikes/graphql/graphql-server/src/schema.js b/spikes/graphql/graphql-server/src/schema.js index d7231b9e..4431cf44 100644 --- a/spikes/graphql/graphql-server/src/schema.js +++ b/spikes/graphql/graphql-server/src/schema.js @@ -195,13 +195,14 @@ type Mutation { provisionManifest(deploymentGroupUuid: ID!, type: ManifestType!, format: ManifestFormat!, raw: String!) scale(service: ID!, replicas: Int!) - stopService(uuid: String!) - startService(uuid: String!) - restartService(uuid: String!) + stopServices(uuids: [ID]!) + startServices(uuids: [ID]!) + restartServices(uuids: [ID]!) + deleteServices(uuids: [ID]!) - stopInstances(uuids: [String]!) - startInstances(uuids: [String]!) - restartInstances(uuids: [String]!) + stopInstances(uuids: [ID]!) + startInstances(uuids: [ID]!) + restartInstances(uuids: [ID]!) # reprovision() ??? }