feat: Introduce generic auth steps
This commit is contained in:
13
packages/web/src/graphql/mutations/index.ts
Normal file
13
packages/web/src/graphql/mutations/index.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { CREATE_CREDENTIAL } from './create-credentials';
|
||||
import { CREATE_AUTH_LINK } from './create-auth-link';
|
||||
|
||||
type Mutations = {
|
||||
[key: string]: any,
|
||||
}
|
||||
|
||||
const mutations: Mutations = {
|
||||
createCredential: CREATE_CREDENTIAL,
|
||||
createAuthLink: CREATE_AUTH_LINK,
|
||||
};
|
||||
|
||||
export default mutations;
|
Reference in New Issue
Block a user