> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

# ignored

> Soft-deletes a query view in the model.

This effectively removes the query view from the model, which can be useful for hiding undesirable tables. When using this parameter, note that:

* When applied, references to the query view will break, resulting in model validation errors
* Query views are not removed from the schema and will still be accessible via SQL

To instead hide a query view from the workbook UI, use the [`hidden`](/modeling/query-views/parameters/hidden) parameter.

## Syntax

```yaml theme={null}
ignored: true
```

## Properties

<ParamField path="ignored" type="boolean" default="false">
  If `true`, the query view will be ignored.
</ParamField>

## Examples

```yaml title="Ignore a query view" theme={null}
ignored: true
```
