feat: Introduce reset and verify connection mutations

This commit is contained in:
Faruk AYDIN
2021-10-22 15:55:25 +02:00
committed by Ali BARIN
parent de82dbfe29
commit 44fbaeee82
9 changed files with 168 additions and 18 deletions

View File

@@ -2,6 +2,8 @@ import { GraphQLObjectType } from 'graphql';
import createConnection from './mutations/create-connection';
import createAuthLink from './mutations/create-auth-link';
import updateConnection from './mutations/update-connection';
import resetConnection from './mutations/reset-connection';
import verifyConnection from './mutations/verify-connection';
import deleteConnection from './mutations/delete-connection';
const rootMutation = new GraphQLObjectType({
@@ -10,6 +12,8 @@ const rootMutation = new GraphQLObjectType({
createConnection,
createAuthLink,
updateConnection,
resetConnection,
verifyConnection,
deleteConnection
}
});