remove cancelAllNotifications resolver

This commit is contained in:
2025-02-04 10:42:12 -08:00
parent d54539e65b
commit f1f1d5c971
2 changed files with 0 additions and 8 deletions

View File

@@ -69,7 +69,6 @@ type Query {
type Mutation {
scheduleNotification(input: NotificationInput): NotificationResponse
cancelNotification(input: NotificationInput): NotificationResponse
cancelAllNotifications(deviceId: ID!): NotificationResponse
}
input NotificationInput {

View File

@@ -17,12 +17,5 @@ export const MutationResolvers: Resolvers<ServerContext> = {
}
return response;
},
cancelAllNotifications: async (_parent, args, context, _info) => {
const response: NotificationResponse = {
message: "Not implemented",
success: false
}
return response;
},
},
}