ENUM

RateLimitType

link GraphQL Schema definition

1enum RateLimitType {
2# General purpose rate limiting based on number of requests sent. One request always consumes 1 quota point.
3REQUEST_COUNT
4# Every query has a complexity score (including queries inside mutations),
5# and more complex queries are allowed to be processed less times per given timeframe.
6# Consumes number of quota points equal to query's complexity.
7QUERY_COMPLEXITY
8# Since there is no mechanism yet for determining mutation's complexity,
9# just a general number of them is allowed per given timeframe.
10# One mutation always consumes 1 quota point.
11MUTATION_COUNT
12}