OBJECT

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.

link GraphQL Schema definition

1type RateLimit {
2# Type of the window. See enum for more details
3type: RateLimitType!
4
5# Length of the window. See enum for more details
6intervalSeconds: RateLimitInterval!
7
8# The maximum number of points that are allowed for the window
9quota: Int!
10
11# The number of points used for the window
12usedQuota: Int!
13
14# The number of points remaining for the window
15remainingQuota: Int!
16
17}