We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 543ffdf commit 3ba32a3Copy full SHA for 3ba32a3
src/layers/0_functions/request.ts
@@ -28,7 +28,7 @@ export const request = async (input: Input): Promise<ExecutionResult> => {
28
const requestObject = new Request(input.url, {
29
method: `POST`,
30
headers: new Headers({
31
- 'content-type': CONTENT_TYPE_GQL,
+ 'accept': CONTENT_TYPE_GQL,
32
...Object.fromEntries(new Headers(input.headers).entries()),
33
}),
34
body: bodyEncoded,
0 commit comments