mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
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:
@@ -1825,7 +1825,7 @@ export class GraphQLService {
|
||||
name: 'auth_tokens',
|
||||
fields: {
|
||||
access_token: GraphQLString,
|
||||
expires: GraphQLInt,
|
||||
expires: GraphQLBigInt,
|
||||
refresh_token: GraphQLString,
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user