as i understand using the Refresh token i can gain a new Access token, but using the built-in graphql_jwt.Refresh.Field() in my mutation, upon each query a new refresh token is also created with a new expiry date, which renders
'JWT_REFRESH_EXPIRATION_DELTA': timedelta(days=5), meaningless, so by logging in once you can stay logged in forever
how can i get a new access token without also renewing the Refresh Token?
as i understand using the Refresh token i can gain a new Access token, but using the built-in
graphql_jwt.Refresh.Field()
in my mutation, upon each query a new refresh token is also created with a new expiry date, which renders'JWT_REFRESH_EXPIRATION_DELTA': timedelta(days=5),
meaningless, so by logging in once you can stay logged in foreverhow can i get a new access token without also renewing the Refresh Token?