graphql: fix issue with unmarshalling int32 into Long type #22153

This commit is contained in:
rene 2021-01-11 14:55:42 +01:00 committed by Igor Mandrigin
parent 993d973de4
commit 8af432b89e

View File

@ -300,7 +300,7 @@ const schema string = `
block(number: Long, hash: Bytes32): Block
# Blocks returns all the blocks between two numbers, inclusive. If
# to is not supplied, it defaults to the most recent known block.
blocks(from: Long!, to: Long): [Block!]!
blocks(from: Long, to: Long): [Block!]!
# Pending returns the current pending state.
pending: Pending!
# Transaction returns a transaction specified by its hash.