> 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_names.md).

# CallGraph.with\_names()

`with_names(`*`names: List[str],sensitivity: bool = True`*`) →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`CallNode`](/glider-ide/api/internal/callnode.md)`]`&#x20;

## 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_names(["_msgSender", "_msgData"])
    for node in call_nodes:
        print(node.callable_name())

    return contracts
```

## Example Output

<figure><img src="/files/6tFJGF9F3BW1XCvsLSj1" alt=""><figcaption></figcaption></figure>
