diff --git a/src/core/server/app/middleware/graphql/apolloServer.ts b/src/core/server/app/middleware/graphql/apolloServer.ts index b35b044fd..8fe5035b6 100644 --- a/src/core/server/app/middleware/graphql/apolloServer.ts +++ b/src/core/server/app/middleware/graphql/apolloServer.ts @@ -81,6 +81,10 @@ export const apolloGraphQLMiddleware = ({ // Disable subscriptions as we'll be providing it seperatly. subscriptions: false, + // Disable automated persisted queries as Coral will provide it's own + // implementation at the Express level. + persistedQueries: false, + // Configure plugins to be ran on requests. plugins: [ ErrorApolloServerPlugin,