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

# Functions.without\_modifier\_names()

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

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

## Example

```python
from glider import *

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

  return functions
```

## Output

<figure><img src="/files/9RsuzKXmpxWGvQA4qYFI" alt=""><figcaption></figcaption></figure>
