Contract
columns and relationships of "Contract"
type Contract {
  actions(
    distinct_on: [Action_select_column!]
    limit: Int
    offset: Int
    order_by: [Action_order_by!]
    where: Action_bool_exp
  ): [Action!]!
  address: String!
  admin: String
  alias: String!
  category: contractcategory!
  chainId: numeric!
  db_write_timestamp: timestamp
  id: String!
  streams(
    distinct_on: [Stream_select_column!]
    limit: Int
    offset: Int
    order_by: [Stream_order_by!]
    where: Stream_bool_exp
  ): [Stream!]!
  version: String!
}
Fields
Contract.actions ● [Action!]! non-null object
An array relationship
Contract.actions.distinct_on ● [Action_select_column!] list enum
distinct select on columns
Contract.actions.limit ● Int scalar
limit the number of rows returned
Contract.actions.offset ● Int scalar
skip the first n rows. Use only with order_by
Contract.actions.order_by ● [Action_order_by!] list input
sort the rows by one or more columns
Contract.actions.where ● Action_bool_exp input
filter the rows returned
Contract.address ● String! non-null scalar
Contract.admin ● String scalar
Contract.alias ● String! non-null scalar
Contract.category ● contractcategory! non-null scalar
Contract.chainId ● numeric! non-null scalar
Contract.db_write_timestamp ● timestamp scalar
Contract.id ● String! non-null scalar
Contract.streams ● [Stream!]! non-null object
An array relationship
Contract.streams.distinct_on ● [Stream_select_column!] list enum
distinct select on columns
Contract.streams.limit ● Int scalar
limit the number of rows returned
Contract.streams.offset ● Int scalar
skip the first n rows. Use only with order_by
Contract.streams.order_by ● [Stream_order_by!] list input
sort the rows by one or more columns
Contract.streams.where ● Stream_bool_exp input
filter the rows returned