> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/filters/globalfilters/globalfilters.msg_data.md).

# GlobalFilters.MSG\_DATA

The MSG\_DATA property is used to add a filter to include or exclude functions that calls `msg.data`.&#x20;

### Query Example

```python
from glider import *


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

### Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FcNLMeZgYv1qpTMQiUBwS%2FScreenshot%202025-08-28%20at%2012.39.53%E2%80%AFPM.png?alt=media&amp;token=becd5819-e252-459e-a1e0-8b9b8b9cb3b7" alt=""><figcaption></figcaption></figure>
