Executes the formed query and returns the list of Instruction objects
exec(limit_count: int = 0, offset_count: int = 0) โ APIList[Instruction]
limit_count is the number of instructions to query, while offset_count is the offset applied to the results returned. For example with offset_count = 2, will return limit_count instructions starting from the 3rd instructions.
Query Example
from glider import*defquery():returnInstructions().exec(10)