GlobalFilters.MSG_VALUE

The MSG_VALUE property is used to add a filter to include or exclude functions that calls msg.value.

Query Example

from glider import *


def query():
  functions = (
    Functions()
    .with_globals(GlobalFilters.MSG_VALUE)
    .exec(1)
  )
  
  return functions

Example Output

Last updated