fuel-indexer
fuel-indexer copied to clipboard
Add support for `u128` and other large integer types in `fuel-indexer-graphql`
async-graphql-parser
allows for the use of u64
, but we allow for the use of u128
in our data models. As such, we'll need to add support for parsing arguments and returning values of type u128
. This should be possible through the use of custom scalars.