Schema Documentation
refreshJwtAuthToken
Description
Use a valid JWT Refresh token to retrieve a new JWT Auth Token
Response
Returns a RefreshJwtAuthTokenPayload
Arguments
| Name | Description |
|---|---|
input - RefreshJwtAuthTokenInput! | Input for the refreshJwtAuthToken mutation |
Example
Query
mutation refreshJwtAuthToken($input: RefreshJwtAuthTokenInput!){ refreshJwtAuthToken(input: $input){ authTokenclientMutationId }}Variables
{"input":RefreshJwtAuthTokenInput}Response
{"data":{"refreshJwtAuthToken":{"authToken":"abc123","clientMutationId":"abc123"}}}