import { createGraphQLHandler, makeMergedSchema, makeServices, } from '@redwoodjs/api' import { createSentryApolloPlugin } from 'src/lib/sentry' import schemas from 'src/graphql/**/*.{js,ts}' import services from 'src/services/**/*.{js,ts}' import { getCurrentUser } from 'src/lib/auth' import { db } from 'src/lib/db' export const handler = createGraphQLHandler({ getCurrentUser, schema: makeMergedSchema({ schemas, services: makeServices({ services }), }), plugins: [createSentryApolloPlugin()], onException: () => { // Disconnect from your database with an unhandled exception. db.$disconnect() }, })