Errors.exec()

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

exec(limit_count: int = 0, offset_count: int = 0) β†’ APIList[Error]

Query Example

from glider import *

def query():
  contracts = Contracts().exec(1, 1336)

  for contract in contracts:
    for error in contract.errors().exec():
      print(error.name)
 
  return []

Example Output

[
  {
    "print_output": [
      "OnlySimulatedBackend"
    ]
  }
]

Last updated