UNPKG

@envelop/rate-limiter

Version:

This plugins uses [`graphql-rate-limit`](https://github.com/teamplanes/graphql-rate-limit#readme) in order to limit the rate of calling queries and mutations.

9 lines (8 loc) 215 B
class RateLimitError extends Error { isRateLimitError = true; constructor(message) { super(message); Object.setPrototypeOf(this, RateLimitError.prototype); } } export { RateLimitError };