---
search:
  exclude: true
---

# <a id="bitdrift.public.unary.issues.v1.FeatureFlagFilter"></a>FeatureFlagFilter

**Source definition:** [`src/bitdrift/public/unary/issues/v1/issues.proto#L70-L82`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/issues/v1/issues.proto#L70-L82>)

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| name | <span class="proto-type proto-type-primitive">string</span><br><em class="proto-field-annotation">between 1 and 100 chars</em> |  |
| variant | <span class="proto-type proto-type-primitive">optional string</span><br><em class="proto-field-annotation">up to 100 chars</em> | The variant of the feature flag to filter by. If not specified, all variants are included. |
| exclusive | <span class="proto-type proto-type-primitive">bool</span> | Only include issues that are exclusively associated with this feature flag (and variant, if specified). This implies that  this feature flag was always active when the issue occurred. |

</section>
#### Example
```json
{
  "exclusive": false,
  "name": "EXC_BAD_ACCESS",
  "variant": "null pointer"
}
```

