Skip to content

Commit

Permalink
Merge pull request #7920 from apollographql/ms/fix-table
Browse files Browse the repository at this point in the history
docs: fix table
  • Loading branch information
Meschreiber authored Aug 9, 2024
2 parents 289846b + 5bcbee7 commit 38fe427
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/source/api/apollo-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,6 @@ The default value is `true`, **unless** the `NODE_ENV` environment variable is s
</td>
</tr>

<tr>

<tr>
<td>

Expand All @@ -161,11 +159,11 @@ The default value is `true`, **unless** the `NODE_ENV` environment variable is s

<td>

If `true`, Apollo Server will strip out "did you mean" suggestions when an operation fails validation.
If `true`, Apollo Server strips out "did you mean" suggestions when an operation fails validation.

For example, with this option set to `true`, an error would read `Cannot query field "help" on type "Query".` whereas with this option set to `false` it would read `Cannot query field "help" on type "Query". Did you mean "hello"?`.
For example, with this option set to `true`, an error would read `Cannot query field "help" on type "Query".`. With this option set to `false`, the same error would read `Cannot query field "help" on type "Query". Did you mean "hello"?`.

The default value is `false` but we recommend enabling this option in production to avoid leaking information about your schema.
The default value is `false`, but Apollo recommends enabling this option in production to avoid leaking information about your schema.

</td>
</tr>
Expand Down

0 comments on commit 38fe427

Please sign in to comment.