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
5
6
7
8
9
5 = x

x
If(Predicate: {IsMore(1) | And | IsLess(10)} Then: {
    Log("Value is more than 1 and less than 10")
  } Else: {
    Log("Value is not more than 1 and less than 10")
  }
)