from glider import *
def query():
functions = Functions().exec(100)
expressions = []
for function in functions:
for exp_instruction in function.expression_instructions().exec():
# For each function, return the expressions
expressions.append(exp_instruction)
return expressions