> 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/functions/functions.with_one_of_the_modifier_names.md).

# Functions.with\_one\_of\_the\_modifier\_names()

`with_one_of_the_modifier_names(`*`names: List[str]`*`,`` `*`sensitivity: bool = True`*`) →` [`Functions`](/glider-ide/api/functions.md)

Adds a filter to get functions that have a modifier with one of the given names.

## Example

```python
from glider import *

def query():
  
  # Fetch a list of functions with modifiers from the given list
  functions = Functions().with_one_of_the_modifier_names(['onlyAdmin','onlyOwner']).exec(5)

  return functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FdRzYMMbmsgzM3F1OO7ha%2Fimage.png?alt=media&amp;token=f04e39d0-7877-4675-8764-5aeece5230a0" alt=""><figcaption></figcaption></figure>
