diff --git a/backend/graphql/resolvers/graphql_resolvers.ts b/backend/graphql/resolvers/graphql_resolvers.ts index 6439e40..52e63df 100644 --- a/backend/graphql/resolvers/graphql_resolvers.ts +++ b/backend/graphql/resolvers/graphql_resolvers.ts @@ -62,6 +62,7 @@ export const resolvers = { Mutation: { uploadCSV: async (_, { file, userId }, { db }) => { try { + console.log(db); const upload = await file; // Resolve the file promise to get the Upload object if (!upload) { throw new Error("No file uploaded");