Fix auth expires value larger than 32-bit integer for GraphQL (#17908)

* verify blackbox test catches this error

* use GraphQLBigInt for auth expires field

---------

Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
This commit is contained in:
Azri Kahar
2023-03-24 22:18:59 +08:00
committed by GitHub
parent 73bbfaf058
commit e0cf496797
3 changed files with 3 additions and 2 deletions

View File

@@ -1825,7 +1825,7 @@ export class GraphQLService {
name: 'auth_tokens',
fields: {
access_token: GraphQLString,
expires: GraphQLInt,
expires: GraphQLBigInt,
refresh_token: GraphQLString,
},
});