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

# Instruction.get\_dests()

`get_dests() → APIList[`[`Value`](/glider-ide/api/value.md) `|` [`NoneObject`](/glider-ide/api/internal/noneobject.md)`]`&#x20;

## Query Example

```python
from glider import *


def query():
  instruction = Instructions().exec(1,1)
  dests = instruction[0].get_dests()
  
  for dest in dests:
    print(dest.expression)
      
  return [instruction[0]]
```

## Example Output

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