> 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/callnode/callnode.callees_recursive.md).

# CallNode.callees\_recursive()

Returns all nodes corresponding the callees of the corresponding callable with the callees of those callables etc.

`callees_recursive() →` [`APISet`](/glider-ide/api/iterables/apiset.md)`[`[`CallNode`](/glider-ide/api/internal/callnode.md)`]`

## Query Example

```python
from glider import *


def query():
    contracts = Contracts().exec(1,3)
    contract = contracts[0]

    call_nodes = contract.call_graph().all_nodes()
    call_node = call_nodes[32]

    print(f"Call node callable name: {call_node.callable_name()}")

    for callee in call_node.callees_recursive():
        print(f"Extended callee callable name: {callee.callable_name()}")

    return contracts
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FPw44N2HGzjXsfiFUI7jd%2FScreenshot%202025-09-10%20at%206.09.15%E2%80%AFPM.png?alt=media&amp;token=9f33dc87-ee8b-409e-8d7e-3877de0db8aa" alt=""><figcaption></figcaption></figure>
