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

# VarValue.forward\_df()

Returns the list of all points following the current point in the current data flow graph.

`forward_df() →` [`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()
        print(points)
        for forward_df in points:
          print(forward_df.source_code())

  return instructions
```

## Output Example

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2Fcwu82N62NJ9RDCGCKewt%2Fimage.png?alt=media&amp;token=2a0b7806-b06a-4723-bab7-f542457fac3d" alt=""><figcaption></figcaption></figure>
