Functions.caller_functions_recursive()
Returns a Functions object representing the functions through which the functions from current Functions object could be called.
Query Example
from glider import *
def query():
funcs = Functions().with_name("transfer").caller_functions_recursive().exec(2)
return funcsExample Output

Last updated