Host-remote refresh token implementation (#18044)
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
import gql from 'graphql-tag';
|
||||
|
||||
export const RENEW_APPLICATION_TOKEN = gql`
|
||||
mutation RenewApplicationToken($applicationRefreshToken: String!) {
|
||||
renewApplicationToken(applicationRefreshToken: $applicationRefreshToken) {
|
||||
applicationAccessToken {
|
||||
token
|
||||
expiresAt
|
||||
}
|
||||
applicationRefreshToken {
|
||||
token
|
||||
expiresAt
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user