OBJECT

blocks

columns and relationships of "blocks"

link GraphQL Schema definition

  • type blocks {
  • blockNumber: Int!
  • timestamp: timestamptz!
  • # 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(
  • distinct_on: [transfers_select_column!],
  • limit: Int,
  • offset: Int,
  • order_by: [transfers_order_by!],
  • where: 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_aggregate(
  • distinct_on: [transfers_select_column!],
  • limit: Int,
  • offset: Int,
  • order_by: [transfers_order_by!],
  • where: transfers_bool_exp
  • ): transfers_aggregate!
  • }