Executes the formed query and returns the list of Struct objects.
exec(limit_count: int = 0, offset_count: int = 0) β APIList[Struct]
exec(
limit_count: int = 0, offset_count: int = 0
) β
APIList
[
Struct
]
from glider import * def query(): contracts = Contracts().exec(1, 26) for struct in contracts[0].structs().exec(): print(struct.name) return []
[ { "print_output": [ "UserInfo" ] } ]
Last updated 2 months ago