Variable: MAX_RECORDED_ERRORS
constMAX_RECORDED_ERRORS:10=10
Defined in: types/graphql.types.ts:25
How many of an operation's errors are recorded.
graphql-js stops validating at a hundred, and each error carries a message, a path and a position. One rejected query recorded all of them:
{ nope0 … nope499 } -> 400 Bad Request, a 152,749-byte entry
repeatable by anyone who can reach the endpoint. The first few are what a
reader debugging an operation looks at; errorCount keeps the rest from
being hidden.