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

# VarValue.get\_parent()

`get_parent() →` [`Callable`](/glider-ide/api/callable.md)

## Query Example

```python
from glider import *


def query():
  instructions = Instructions().exec(1, 2)

  for instruction in instructions:
    components = instruction.get_components()
    for component in components:
      if isinstance(component, VarValue):
        parent = component.get_parent()
        print(parent)
        
  return instructions
```

## Output Example

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