add implementation for isNotificationScheduled

This commit is contained in:
2025-02-12 19:53:26 -08:00
parent e22537d93d
commit f5d40ebd7a

View File

@@ -17,7 +17,8 @@ export const QueryResolvers: Resolvers<ServerContext> = {
}; };
}, },
isNotificationScheduled: async (_parent, args, contextValue, _info) => { isNotificationScheduled: async (_parent, args, contextValue, _info) => {
return false; const notificationData = args.input;
return contextValue.notificationService.isNotificationScheduled(notificationData);
} }
}, },
} }