UNPKG

@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) 376 B
// Placeholder booking resolvers const bookingResolvers = { Query: { bookings: () => { // TODO: Implement booking queries return []; } }, Mutation: { createBooking: () => { // TODO: Implement booking mutations return null; } } }; export default bookingResolvers;