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

# Instruction.forward\_df\_recursive()

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

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

The function works similarly to [Instruction.forward\_df()](/glider-ide/api/instruction/instruction.forward_df.md); the main difference is that in case of Instruction.forward\_df() the function will return forward dataflow point for every point in the Instruction, while Instruction.forward\_df() returns only those connected with the current Instruction.&#x20;

Like all other dataflow (DF) functions, it returns a list/set of Points, which can be instructions or "points" in the code, such as arguments, variables, etc.

## Query Example

```python
from glider import *

def query():
    # Fetch an instruction
    instructions = (
        Functions()
        .with_address("0xBC6e47b27f61531602662E3cC4DB688DB8cb7Ce8")
        .with_name("getInvariant")
        .exec(1)
        .instructions()
        .exec(1,2)

    )
    
    # Return the list of instructions following the current instruction
    instruction = instructions[0]

    # Iterate through each recursive point and print it's source code
    for point in instruction.forward_df_recursive():
        print(point.source_code())

    # Return the entry instruction to print all downstream points
    return instructions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FLAnTft5uRu9rQckknv4B%2FScreenshot%202025-09-17%20at%202.50.45%E2%80%AFPM.png?alt=media&amp;token=cc6e6ded-8520-4be6-96a1-a5931cb41cf8" alt=""><figcaption></figcaption></figure>
