INPUT_OBJECT

LazyStorageIdFilter

Provides filters for filtering lazy storage diffs to certain big maps or sapling states based on their global IDs.

link GraphQL Schema definition

  • input LazyStorageIdFilter {
  • # Matches if the property value equals to this filter value.
  • equalTo: BigNumber
  • # Matches if the property value does NOT equal to this filter value.
  • notEqualTo: BigNumber
  • # Matches if the property value is contained in these filter values.
  • in: [BigNumber!]
  • # Matches if the property value is NOT contained in these filter values.
  • notIn: [BigNumber!]
  • }