diff --git a/lib/src/common/graphql_service.dart b/lib/src/common/graphql_service.dart index 5a45a68f..b039053b 100644 --- a/lib/src/common/graphql_service.dart +++ b/lib/src/common/graphql_service.dart @@ -13,7 +13,7 @@ class GraphQLService { final httpLink = HttpLink('https://api.github.com/graphql'); final authLink = AuthLink( - getToken: () async => 'Bearer ${github.auth.token}', + getToken: () async => 'Bearer ${github.auth.bearerToken}', ); final link = authLink.concat(httpLink);