Skip to content

Or

Name Mandatory Description Default Type
⬅️ Input If true, the flow stops and succeeds; otherwise, the flow continues. Bool
Output ➡️ The output of this shard will be the input of the current conditional flow or wire. Bool

Computes the logical OR between the input of this shard and the output of the next shard. If the input is true, the flow stops and succeeds; if false, the flow continues with the next shard. Typically used within conditional flows (e.g., If, When) to chain conditions. Note: Outside a conditional flow, it might restart the current wire, which can be used as a trick in certain scenarios.

Examples

1
2
3
4
false | Or | false | Assert.Is(false Break: true)
false | Or | true | Assert.Is(true Break: true)
true |  Or | false | Assert.Is(true Break: true)
true |  Or | true | Assert.Is(true Break: true)