We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11c6c8 commit ad01e75Copy full SHA for ad01e75
src/index.ts
@@ -28,7 +28,11 @@ export default async function createHandler(options: Options) {
28
29
// @ts-ignore response does not match
30
const formatError: Config['formatError'] = createErrorFormatter(Sentry);
31
- const apolloServer = new ApolloServer({ schema, formatError });
+ const apolloServer = new ApolloServer({
32
+ schema,
33
+ formatError,
34
+ persistedQueries: false,
35
+ });
36
37
await apolloServer.start();
38
0 commit comments