> 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/point/externalpoint/externalpoint.get_parent.md).

# ExternalPoint.get\_parent()

Returns parent function/modifier of the ExternalPoint.

## Query Example

```python
from glider import *


def query():
    functions = (
        Functions()
        .with_name("transferFrom")
        .exec(1)
    )

    arguments = functions[0].arguments()

    print(arguments.with_type("address")[0].get_parent())
    print(arguments.with_type("address")[0].get_variable().source_code())


    return functions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FCGILpwkCa0TNTpigkAGg%2Fimage.png?alt=media&amp;token=17062e34-0cc8-4308-910d-8eade23d163e" alt=""><figcaption></figcaption></figure>
