OBJECT

subscription_root

link GraphQL Schema definition

  • type subscription_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(
  • distinct_on: [blocks_select_column!],
  • limit: Int,
  • offset: Int,
  • order_by: [blocks_order_by!],
  • where: 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_aggregate(
  • distinct_on: [blocks_select_column!],
  • limit: Int,
  • offset: Int,
  • order_by: [blocks_order_by!],
  • where: blocks_bool_exp
  • ): blocks_aggregate!
  • # fetch data from the table: "blocks" using primary key columns
  • #
  • # Arguments
  • # blockNumber: [Not documented]
  • blocks_by_pk(blockNumber: Int!): blocks
  • # fetch data from the table in a streaming manner: "blocks"
  • #
  • # Arguments
  • # batch_size: maximum number of rows returned in a single batch
  • # cursor: cursor to stream the results returned by the query
  • # where: filter the rows returned
  • blocks_stream(
  • batch_size: Int!,
  • cursor: [blocks_stream_cursor_input]!,
  • where: blocks_bool_exp
  • ): [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(
  • 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!
  • # fetch data from the table: "transfers" using primary key columns
  • #
  • # Arguments
  • # blockNumber: [Not documented]
  • # logIndex: [Not documented]
  • # transactionIndex: [Not documented]
  • transfers_by_pk(
  • blockNumber: Int!,
  • logIndex: Int!,
  • transactionIndex: Int!
  • ): transfers
  • # fetch data from the table in a streaming manner: "transfers"
  • #
  • # Arguments
  • # batch_size: maximum number of rows returned in a single batch
  • # cursor: cursor to stream the results returned by the query
  • # where: filter the rows returned
  • transfers_stream(
  • batch_size: Int!,
  • cursor: [transfers_stream_cursor_input]!,
  • where: transfers_bool_exp
  • ): [transfers!]!
  • }

link Require by

This element is not required by anyone