You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
file_size gives the error Int cannot represent non 32-bit signed integer value: 5326545745 when dealing with files larger than the non-signed 32 bit value (4294967296). This is due to a GraphQL design choice not to support long or bigInt.
file_size gives the error
Int cannot represent non 32-bit signed integer value: 5326545745
when dealing with files larger than the non-signed 32 bit value (4294967296
). This is due to a GraphQL design choice not to supportlong
orbigInt
.This issue was encountered and "solved" in the past (#12), but as the solution was somewhat hacky, and not documented in the code, the fix was removed at some point when we added new data types supported by ES. The right solution would be to add a custom scalar.
e.g. https://github.com/chadlieberman/graphql-type-long or https://www.npmjs.com/package/graphql-bigint
The text was updated successfully, but these errors were encountered: