GlobalFilters.MSG_DATA
Query Example
from glider import *
def query():
functions = (
Functions()
.with_globals(GlobalFilters.MSG_DATA)
.exec(1)
)
return functionsExample Output

Last updated
from glider import *
def query():
functions = (
Functions()
.with_globals(GlobalFilters.MSG_DATA)
.exec(1)
)
return functions
Last updated