sdy

remove editCategory

type Mutation {
editCategory(name: String!): Category!
}
import { prisma } from "../../../utils";
export default {
Mutation: {
editCategory: async (_, args) => {
const { name } = args;
},
},
};