shootismoke/backend

View on GitHub
src/api/graphql.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import { nowApollo } from '../apollo';
import { sentrySetup } from '../util';

sentrySetup();

export default nowApollo({
    db: {
        uri: process.env.MONGODB_ATLAS_URI,
    },
    server: { path: '/api/graphql' },
});