add isNotificationScheduled resolver and test cases

This commit is contained in:
2025-02-12 19:51:42 -08:00
parent e697fd89b8
commit 8971e3514d
2 changed files with 48 additions and 1 deletions

View File

@@ -15,6 +15,9 @@ export const QueryResolvers: Resolvers<ServerContext> = {
name: system.name,
id: system.id,
};
},
isNotificationScheduled: async (_parent, args, contextValue, _info) => {
return false;
}
},
}
}