> 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/functions/functions.caller_functions_recursive.md).

# Functions.caller\_functions\_recursive()

`caller_functions_recursive() →` [`Functions`](/glider-ide/api/functions.md)

The function will retrieve ***extended*****/*****inter-procedural*** functions, meaning it works recursively. It returns the Functions object representing all the functions that ultimately call the function in question.

## Query Example

```python
from glider import *


def query():
  funcs = Functions().with_name("transfer").caller_functions_recursive().exec(2)
  
  return funcs
```

## Example Output

<figure><img src="/files/Qy13qlYvtcm8HsQGIem6" alt=""><figcaption></figcaption></figure>
