Pass¶
Name | Mandatory | Description | Default | Type |
---|---|---|---|---|
⬅️ Input |
Any input type is accepted. The input value will pass through unchanged. | Any |
||
Output ➡️ |
Outputs the input value, passed through unchanged. | Any |
This shard is a "no operation" shard. It simply passes through the input without modifying it.
Details¶
This shard is useful for placeholding, debugging or "skipping". For example, using Pass
in the Then
parameter of the conditional shard If
, If(Predicate: some-condition Then: {do-something} Else: Pass)
, this means that nothing will happen when the condition set in the Predicate
parameter is not met.