---
title: "Filter Equal"
description: "Local-first visual environment for building and running AI workflows. Build agents visually, deploy anywhere, privacy by design."
canonical: https://docs.nodetool.ai/nodes/nodetool/control/filterequal
markdown: https://docs.nodetool.ai/nodes/nodetool/control/filterequal.md
product: NodeTool
source: https://github.com/nodetool-ai/nodetool/blob/main/docs/nodes/nodetool/control/filterequal.md
---

# Filter Equal

**Type:** `nodetool.control.FilterEqual`

**Namespace:** `nodetool.control`

## Description

Pass items through only when they equal a target value.
    filter, equal, match, predicate, stream, where

    Use cases:
    - Keep only items matching a status, label, or category
    - Drop sentinel/null markers from a stream
    - Select rows by an exact id

## Properties

| Property | Type | Description | Default |
|----------|------|-------------|---------|
| input_item | `any` | Streaming input — items pass through if they equal the target value. | null |
| value | `any` | Target value. Items deep-equal to this are passed through. | null |
| invert | `bool` | When true, pass items NOT equal to the target value. | `false` |

## Outputs

| Output | Type | Description |
|--------|------|-------------|
| output | `any` |  |

## Related Nodes

Browse other nodes in the [nodetool.control](./) namespace.
