12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
import { generateToken } from '../index.ts';
|
|
|
|
export const queryResolvers = {
|
|
info: () => `This is the API of a Hackernews Clone`,
|
|
feed: async (parent, args, context) => {
|
|
if (!context.user) {
|
|
throw new Error('Not authenticated');
|
|
}
|
|
return context.prisma.link.findMany();
|
|
},
|
|
};
|