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

# VarValue.forward\_df\_recursive()

`forward_df_recursive() →` [`APISet`](/glider-ide/api/iterables/apiset.md)`[`[`Point`](/glider-ide/api/point/point.md)`]`

## Query Example

```python
from glider import *


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

  for instruction in instructions:
    components = instruction.get_components()
    for component in components:
      if isinstance(component, VarValue):
        points = component.forward_df_recursive()
        for forward_df in points:
          print(forward_df.source_code())

  return instructions
```

## Output Example

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

To clarify, what is the difference between `forward_df` and `forward_df_recursive`? `forward_df_recursive` operates recursively. Below is the output when `forward_df` was used instead of `forward_df_recursive` :

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