Structs.exec()

Executes the formed query and returns the list of Struct objects.

exec(limit_count: int = 0, offset_count: int = 0) โ†’ APIList[Struct]

Query Example

from glider import *


def query():
  contracts = Contracts().with_name("DefaultReserveInterestRateStrategy").exec(1)

  for contract in contracts:
    for struct in contract.structs().exec():
      print(struct.name)

  return contracts

Example Output

Last updated