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