feat: Create credentials model and graphQL mutation
This commit is contained in:
11
packages/backend/src/graphql/root-mutation.ts
Normal file
11
packages/backend/src/graphql/root-mutation.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { GraphQLObjectType } from 'graphql';
|
||||
import createCredential from './mutations/create-credential';
|
||||
|
||||
const rootMutation = new GraphQLObjectType({
|
||||
name: 'Mutation',
|
||||
fields: {
|
||||
createCredential: createCredential
|
||||
}
|
||||
});
|
||||
|
||||
export default rootMutation;
|
Reference in New Issue
Block a user