ENUM
RateLimitInterval
For now, only 2 rate limiting intervals are available: 10 seconds and 1 hour
link GraphQL Schema definition
1 enum RateLimitInterval { 2 3 4 }
link Required by
- RateLimit Represents a rate limit window for queries and mutations. Rate limiting is implemented using token bucket algorithm, which means that quota points are replenished at a constant rate up to maximum capacity. The relationship between quota numbers is quota = usedQuota + remainingQuota.
- RateLimitFilter