sdy

init seeProfile

1 +type Query {
2 + seeProfile(id: String!): User!
3 +}
1 +import { prisma } from "../../../middlewares";
2 +
3 +export default {
4 + Query: {
5 + seeProfile: async (_, args) => {
6 + const { id } = args;
7 + },
8 + },
9 +};