We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aaee05a + 85b6d31 commit 344d116Copy full SHA for 344d116
CHANGELOG.md
@@ -11,6 +11,10 @@ You can also check the
11
12
## Unreleased
13
14
+- Fixes
15
+ - Allow GraphQL endpoint to return larger responses by increasing the response
16
+ limit to 20 MB
17
+
18
### 6.3.1 – 2026-02-26
19
20
- Maintenance
app/pages/api/graphql.ts
@@ -56,6 +56,7 @@ const server = new ApolloServer({
56
export const config = {
57
api: {
58
bodyParser: false,
59
+ responseLimit: "20mb",
60
},
61
// see https://vercel.com/docs/functions/configuring-functions/duration
62
maxDuration: 60,
0 commit comments