|
@@ -8,6 +8,8 @@ import * as stopApp from './stopApp.graphql';
|
|
|
import * as uninstallApp from './uninstallApp.graphql';
|
|
|
import * as updateAppConfig from './updateAppConfig.graphql';
|
|
|
import * as updateApp from './updateApp.graphql';
|
|
|
+import * as register from './register.graphql';
|
|
|
+import * as login from './login.graphql';
|
|
|
|
|
|
export const installAppMutation = print(installApp);
|
|
|
export const startAppMutation = print(startApp);
|
|
@@ -15,3 +17,5 @@ export const stopAppMutation = print(stopApp);
|
|
|
export const uninstallAppMutation = print(uninstallApp);
|
|
|
export const updateAppConfigMutation = print(updateAppConfig);
|
|
|
export const updateAppMutation = print(updateApp);
|
|
|
+export const registerMutation = print(register);
|
|
|
+export const loginMutation = print(login);
|