Executes the formed query and returns the list of Contract objects.
Last updated 4 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(3) return contracts
from glider import * def query(): contracts = Contracts().exec(1, 2) return contracts
APIList
Contract