OBJECT

DataItem

An item of arbitrary data associated with the record.

link GraphQL Schema definition

  • type DataItem implements Node {
  • # Unique global ID of the object.
  • id: ID!
  • # The unique key of the data item.
  • key: String!
  • # The raw value of the data item.
  • rawValue: String!
  • # The parsed value of the data item. The value is `null` if the on-chain bytes
  • # don't represent a valid JSON.
  • value: Json
  • }