From d68da1d2aa2237f0fb65dce3c0e5f6bae9c6208f Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Wed, 30 Jun 2021 21:51:35 +0930 Subject: [PATCH] fix: add notifications mutation to schema --- app/graphql/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/graphql/index.ts b/app/graphql/index.ts index d9f292557..4e9e778ea 100644 --- a/app/graphql/index.ts +++ b/app/graphql/index.ts @@ -56,7 +56,7 @@ const baseTypes = [gql` type Mutation { login(username: String!, password: String!): String - + sendNotification(notification: NotificationInput!): Notification shutdown: String reboot: String }