Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ You can also check the

## Unreleased

- Fixes
- Allow GraphQL endpoint to return larger responses by increasing the response
limit to 20 MB

### 6.3.1 – 2026-02-26

- Maintenance
Expand Down
1 change: 1 addition & 0 deletions app/pages/api/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const server = new ApolloServer({
export const config = {
api: {
bodyParser: false,
responseLimit: "20mb",
},
// see https://vercel.com/docs/functions/configuring-functions/duration
maxDuration: 60,
Expand Down
Loading