Skip to content

Commit

Permalink
Clarify header collision strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-scheer committed Sep 26, 2022
1 parent 43bc0a5 commit cd783e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/api/apollo-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ An object containing configuration options for connecting Apollo Server to [Apol

Controls whether to allow [Batching Queries](../workflow/requests/#batching) in a single HTTP Request. Defaults to `false`. If a request comes in formatted as an array rather than as a single request object, an error will be thrown ( i.e., `Operation batching disabled`) _unless_ batching is enabled.

> Note: In the case of duplicate response headers from separate requests, the final response's headers will take precedence.
> Note: In the case of duplicate response headers across separate requests, the later request's header will take precedence on a per-header basis.
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion docs/source/workflow/requests.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ If you have enabled HTTP batching, you can send a batch of queries in a single `

If you send a batched request, Apollo Server responds with a corresponding array of GraphQL responses.

> Note: In the case of duplicate response headers from separate requests, the final response's headers will take precedence.
> Note: In the case of duplicate response headers across separate requests, the later request's header will take precedence on a per-header basis.
## GET requests

Expand Down

0 comments on commit cd783e3

Please sign in to comment.