OBJECT

BigmapRecord

link GraphQL Schema definition

  • type BigmapRecord {
  • # The annotation of bigmap in contract
  • annots: String
  • key_type: Micheline!
  • value_type: Micheline
  • # A Micheline json string describing the type of keys for this Bigmap
  • key_type_micheline_json: String!
  • # A Michelson string describing the type of keys for this Bigmap
  • key_type_michelson: String!
  • # A Micheline json string describing the type of values for this Bigmap
  • value_type_micheline_json: String!
  • # A Michelson string describing the type of values for this Bigmap
  • value_type_michelson: String!
  • # The object containing the contract defining this Bigmap
  • contract: AccountRecord
  • # The block defining this bigmap
  • block: BlockRecord!
  • # The id of this bigmap
  • id: BigNumber!
  • # The batch position of this bigmap
  • batch_position: BigNumber!
  • # The operation that allocated this bigmap
  • operation: OperationRecord
  • # The array containing the keys inside this bigmap
  • #
  • # Arguments
  • # before: [Not documented]
  • # after: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • # filter: [Not documented]
  • # order_by: [Not documented]
  • keys(
  • before: Cursor,
  • after: Cursor,
  • first: Int,
  • last: Int,
  • filter: BigmapKeyFilterInBigmap,
  • order_by: BigmapKeyOrderByInput
  • ): BigmapKeyRecordConnection!
  • }