OBJECT

BigmapValueRecord

link GraphQL Schema definition

  • type BigmapValueRecord {
  • # The key hash of this bigmap value
  • key_hash: String!
  • # The bigmap_operation_kind that created this entry
  • kind: BigmapOperationKind!
  • # The Key of this bigmap value
  • key: Micheline!
  • # The Key of this bigmap value, in Micheline json
  • key_micheline_json: String!
  • # The Key of this bigmap value, in Michelson
  • key_michelson: String!
  • # The value of this bigmap value, in json
  • value: Micheline
  • # The value of this bigmap value, in json
  • value_micheline_json: Micheline
  • # The value of this bigmap value, in Michelson
  • value_michelson: String
  • # The object containing the contract for this value
  • contract: AccountRecord!
  • # The object containing the source account for this value
  • source: AccountRecord!
  • # The object containing the block defining this value
  • block: BlockRecord!
  • # The batch position of the this value
  • batch_position: BigNumber!
  • # The value preceding the current one, that was updated by the current value
  • previous: BigmapValueRecord
  • # The Operation that set this BigmapValue
  • operation: OperationRecord!
  • # The Bigmap that owns this BigmapValue
  • bigmap: BigmapRecord!
  • }