from glider import *
def query():
functions = Functions().exec(1000)
try_instructions = []
for function in functions:
for instruction in function.try_instructions().exec():
# Return the try instructions for each function
try_instructions.append(instruction)
return try_instructions