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

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