sdy

init editProfile

type Mutation {
editProfile(
name: String
email: String
bio: String
avatarUrl: String
): User!
}
import { prisma } from "../../../middlewares";
export default {
Mutation: {
editProfile: async (_, args, { request }) => {},
},
};