Skip to content

And

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

If the input of the preceding shard is true, the flow continues; otherwise, the flow stops. This shard is 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 | And | false | Assert.Is(false Break: true)
false | And | true | Assert.Is(false Break: true)
true | And | false | Assert.Is(false Break: true)
true | And | true | Assert.Is(true Break: true)