> 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/modifier/modifier.properties.md).

# Modifier.properties()

`properties() →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`MethodProps`](/glider-ide/api/callables/methodprop.md)`]`

## Query Example

```python
from glider import *

def query():
  # Fetch a list of modifiers
  modifiers = Modifiers().exec(1)

  # Retrieve the properties of the first modifier
  properties = modifiers[0].properties()
  for prop in properties:
    print(prop)

  return modifiers
```

## Output Example

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