ExchangeRefreshTokenInput
Parameters for exchanging a refresh token for new access tokens.
Contains the refresh token that will be validated and exchanged for fresh authentication tokens to extend the user's session.
input ExchangeRefreshTokenInput {
refreshToken: String!
}
Fields
ExchangeRefreshTokenInput.refreshToken
● String!
non-null scalar
Valid refresh token to exchange for new access tokens.
Must be a currently valid refresh token that was previously issued during authentication. The token will be validated before new tokens are issued.
Member Of
exchangeRefreshToken
mutation