@ideal-photography/shared
Version:
Shared GraphQL and Mongoose logic for Ideal Photography PWAs - Complete photography business models with authentication, bookings, galleries, reviews, and admin management. Fixed ES module imports and GraphQL schema issues.
17 lines (16 loc) • 411 B
JavaScript
// Placeholder notification resolvers
const notificationResolvers = {
Query: {
notifications: () => {
// TODO: Implement notification queries
return [];
}
},
Mutation: {
createNotification: () => {
// TODO: Implement notification mutations
return null;
}
}
};
export default notificationResolvers;