sdy

rename files

1 -type Mutation {
2 - confirmSecretKey(secret: String!, email: String!): String!
3 -}
1 -import { prisma } from "../../../utils";
2 -
3 -export default {
4 - Mutation: {
5 - confirmSecretKey: async (_, args) => {},
6 - },
7 -};
1 -type Mutation {
2 - requestSecretKey(email: String!): Boolean!
3 -}
1 -import { prisma } from "../../../utils";
2 -
3 -export default {
4 - Mutation: {
5 - requestSecretKey: async (_, args, { request }) => {
6 - const { email } = args;
7 - },
8 - },
9 -};