Apollo Server Express: Request entity too large
问题 I need to POST a large payload in a GraphQL mutation. How do I increase the body size limit of Apollo Server? I'm using apollo-server-express version 2.9.3. My code (simplified): const myGraphQLSchema = new GraphQLSchema({ query: new GraphQLObjectType({ name: 'Query', fields: { user: UserQuery, }, }), mutation: new GraphQLObjectType({ name: 'Mutation', fields: () => ({ ...UserMutations, }), }), }); const apolloServer = new ApolloServer(schema: myGraphQLSchema); const app = express(); app.use