-
-
Save benawad/9444bd217f2a98336bc347d42c87c1b1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const setTokenAfterware = new ApolloLink(async (operation, forward) => { | |
return forward(operation).map(async res => { | |
const context = operation.getContext(); | |
const { response: { headers } } = context; | |
const token = headers.get["x-token"]; | |
const refreshToken = headers.get["x-refresh-token"]; | |
if (token) { | |
await AsyncStorage.setItem("token", token); | |
} | |
if (refreshToken) { | |
await AsyncStorage.setItem("refreshToken", refreshToken); | |
} | |
return res; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment