add stubs for mutations

This commit is contained in:
2025-02-04 10:35:50 -08:00
parent d730937b29
commit 2116387203

View File

@@ -0,0 +1,16 @@
import { NotificationInput, Resolvers } from "../generated/graphql";
import { ServerContext } from "../ServerContext";
export const MutationResolvers: Resolvers<ServerContext> = {
Mutation: {
scheduleNotification: async (_parent, args, context, _info) => {
},
cancelNotification: async (_parent, args, context, _info) => {
},
cancelAllNotifications: async (_parent, args, context, _info) => {
},
},
}