OBJECT
query_root
link GraphQL Schema definition
- type query_root {
- # fetch data from the table: "blocks"
- #
- # Arguments
- # distinct_on: distinct select on columns
- # limit: limit the number of rows returned
- # offset: skip the first n rows. Use only with order_by
- # order_by: sort the rows by one or more columns
- # where: filter the rows returned
- (
- : [blocks_select_column!],
- : Int,
- : Int,
- : [blocks_order_by!],
- : blocks_bool_exp
- ): [blocks!]!
- # fetch aggregated fields from the table: "blocks"
- #
- # Arguments
- # distinct_on: distinct select on columns
- # limit: limit the number of rows returned
- # offset: skip the first n rows. Use only with order_by
- # order_by: sort the rows by one or more columns
- # where: filter the rows returned
- (
- : [blocks_select_column!],
- : Int,
- : Int,
- : [blocks_order_by!],
- : blocks_bool_exp
- ): blocks_aggregate!
- # fetch data from the table: "blocks" using primary key columns
- #
- # Arguments
- # blockNumber: [Not documented]
- (: Int!): blocks
- # An array relationship
- #
- # Arguments
- # distinct_on: distinct select on columns
- # limit: limit the number of rows returned
- # offset: skip the first n rows. Use only with order_by
- # order_by: sort the rows by one or more columns
- # where: filter the rows returned
- (
- : [transfers_select_column!],
- : Int,
- : Int,
- : [transfers_order_by!],
- : transfers_bool_exp
- ): [transfers!]!
- # An aggregate relationship
- #
- # Arguments
- # distinct_on: distinct select on columns
- # limit: limit the number of rows returned
- # offset: skip the first n rows. Use only with order_by
- # order_by: sort the rows by one or more columns
- # where: filter the rows returned
- (
- : [transfers_select_column!],
- : Int,
- : Int,
- : [transfers_order_by!],
- : transfers_bool_exp
- ): transfers_aggregate!
- # fetch data from the table: "transfers" using primary key columns
- #
- # Arguments
- # blockNumber: [Not documented]
- # logIndex: [Not documented]
- # transactionIndex: [Not documented]
- (
- : Int!,
- : Int!,
- : Int!
- ): transfers
- }
link Require by
This element is not required by anyone