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

# Functions.without\_modifier\_name()

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

Adds a filter to get functions that either have no modifier with the given name or have no modifier at all.

## Example

```python
from glider import *

def query():
  
  # Fetch a list of functions without onlyOwner modifier
  functions = Functions().without_modifier_name('onlyOwner').exec(3)

  return functions
```

## Output

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