I have set a login/registration for my app and currently things work with a hard coded token. However, I want to set up dynamic token upon login. Here' the code I have for now.
final AuthLink authLink = AuthLink(
// getToken: () async => 'Bearer <YOUR_PERSONAL_ACCESS_TOKEN>',
// OR
getToken: () async =>
"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYwMzRkNGIyMzkwMDZhM2M4YmYxYWM2ZSIsInVzZXJuYW1lSWQiOiJCbGFjayBQYW50aGVyIiwiaWF0IjoxNjE1OTA2NzY3LCJleHAiOjE2MTY1MTE1Njd9.1xliIkkVdLkOO9AGkWwOdGhBCU18bYh26WPa4YFmEeo",
);
You can use any state management for that! For the sake of completion I'll use Riverpod
Step 1: Create a graphql_config.dart file and add this
name: 'gql Provider', );
Step 2: Wrap your MaterialApp (main.dart file) with GraphQLProvider
Step 3: Update token after successful login. Simply call the Provider and update the token
PS. I didn't find a good example from the docs so I came up with this