You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating invalid queries, e.g. by using fields that do not exist we can bypass the complexity costs.
Let's say the request contains 30k very small and invalid queries, then we will have at least 30k errors in the response. I would have expected that this goes into the maximumCost calculation when using defaultCost: 1.
The text was updated successfully, but these errors were encountered:
I suspect this problem is outside of the scope of this library. It likely depends on the server implementation you are using with is package. Relates to graphql/graphql-js#2074
When creating invalid queries, e.g. by using fields that do not exist we can bypass the complexity costs.
Let's say the request contains 30k very small and invalid queries, then we will have at least 30k errors in the response. I would have expected that this goes into the
maximumCost
calculation when usingdefaultCost: 1
.The text was updated successfully, but these errors were encountered: