> 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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FAIaGCFQfKSg7xKq8mAwS%2Fimage.png?alt=media&amp;token=f57a5cfd-96bf-45e2-bb92-73f448e18118" alt=""><figcaption></figcaption></figure>
