Functions.exec()

Executes the formed query and returns a list of the Function objects.

exec(limit_count: int = 0, offset_count: int = 0) → APIList[Function]

Query Example

from glider import *

def query():
  # Fetch a list of functions
  functions = Functions().exec(2)

  return functions

Output Example

Last updated