refactor: enhance room resolvers with authentication
This commit is contained in:
parent
f9f85423b4
commit
f5638d0e84
1 changed files with 5 additions and 5 deletions
|
@ -1,23 +1,23 @@
|
|||
import { GraphQLError } from 'graphql';
|
||||
import { IResolvers } from 'mercurius';
|
||||
import { withAuth } from '../utils';
|
||||
import { MutationResolvers } from '../generated/graphql';
|
||||
import { MutationResolvers, QueryResolvers } from '../generated/graphql';
|
||||
|
||||
export const ROOM_ADDED = 'ROOM_ADDED';
|
||||
export const ROOM_UPDATED = 'ROOM_UPDATED';
|
||||
|
||||
export const roomResolvers: IResolvers = {
|
||||
Query: {
|
||||
rooms: async (_, __, { prisma }) => {
|
||||
rooms: withAuth<QueryResolvers['rooms']>(async (_, __, { prisma }) => {
|
||||
return prisma.room.findMany({
|
||||
where: { isPrivate: false },
|
||||
});
|
||||
},
|
||||
room: async (_, { id }, { prisma }) => {
|
||||
}),
|
||||
room: withAuth<QueryResolvers['room']>(async (_, { id }, { prisma }) => {
|
||||
return prisma.room.findUnique({
|
||||
where: { id },
|
||||
});
|
||||
},
|
||||
}),
|
||||
},
|
||||
Mutation: {
|
||||
createRoom: withAuth<MutationResolvers['createRoom']>(
|
||||
|
|
Loading…
Reference in a new issue