sdy

init seeProfile

type Query {
seeProfile(id: String!): User!
}
import { prisma } from "../../../middlewares";
export default {
Query: {
seeProfile: async (_, args) => {
const { id } = args;
},
},
};