> 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/internal/callgraph/callgraph.with_name_suffix.md).

# CallGraph.with\_name\_suffix()

`with_name_suffix(`*`suffix: str`*`,`` `*`sensitivity: bool = True`*`) →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`CallNode`](/glider-ide/api/internal/callnode.md)`]`

## Query Example

```python
from glider import *


def query():
    # Fetch the first contract
    contracts = Contracts().exec(1)
  
    # Get call nodes of functions ending with "Sender" 
    call_nodes = contracts[0].call_graph().with_name_suffix("Sender")
    for node in call_nodes:
        print(node.callable_name())

    return contracts
```

## Output Example

```json
{
  "print_output": [
    "_msgSender"
  ]
}
```
