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

revert-23120-drop-eth-65
rene 4 years ago committed by GitHub
parent 49c2816d54
commit 39b3b8ffb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      graphql/schema.go

@ -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.

Loading…
Cancel
Save