Enable graphql introspection when running locally

This commit is contained in:
Jackson Harper 2022-05-02 09:44:13 -07:00
parent 834afe7877
commit 61b7ac3cb2

View file

@ -120,6 +120,7 @@ export function makeApolloServer(): ApolloServer {
// hide error messages from frontend on prod
return new Error('Unexpected server error')
},
introspection: env.dev.isLocal,
})
return apollo