ENUM

GrantType

Set based on the auth input type.

link GraphQL Schema definition

1enum GrantType {
2
3# Used for the initial flow after LWA, one-time usage.
4AUTHORIZATION_CODE
5
6# Used for follow up refreshes, can be used as many times as needed.
7REFRESH_TOKEN
8}