apollo-server-integrations/apollo-server-integration-next

Request Issue

Closed this issue · 2 comments

Hello,

I am getting POST body missing, invalid Content-Type, or JSON object has no keys. error when requesting.
I am using application/json for Content-Type header

Error:
image

Code:
image

This integration doesn't require you to disable Next.js' built in body parser.

Removing the following should fix your issue:

export const config: PageConfig = {
  api: {
    bodyParser: false,
  },
};

That worked! Thanks @martinnabhan .