EasyUse/Logicgenerated
Show Any(showAnything)
The Show Any node (showAnything) is a pass-through utility from the ComfyUI-Easy-Use package.
show Anything
anything
output
Easy Use
Description
The Show Any node (showAnything) is a pass-through utility from the ComfyUI-Easy-Use package. It accepts a value of any type and returns that exact value unchanged. This makes it useful as a flexible intermediary in a workflow: you can use it to explicitly pass arbitrary data from one point to another, to inspect values along a logic path, or to connect outputs whose types are not otherwise recognized.
It is categorized under EasyUse/Logic.
Inputs
- anything (
ANYTYPE, optional): The value to pass through. Because this input is optional, the node can execute even when nothing is connected to it. It accepts any data type — tensors, strings, booleans, numbers, lists, dictionaries, custom objects, and more.
Outputs
- ANYTYPE: The same value supplied to
anything, unchanged. If no value is connected to the input, the output isNone.
Usage Notes
- This node performs no conversion, validation, or transformation. Its purpose is simply to carry a value from input to output.
- Because both the input and output are
ANYTYPE, it can be inserted almost anywhere in a workflow without forcing type coercion. - Use it as a visual checkpoint or routing point when you want to make an intermediate value explicit in your graph.
- The
anythinginput is optional, so the node can still be executed when the input is left unconnected; in that case the returned value isNone.
Comments
Sign in with GitHub to join the discussion.