flow
(required): The flow input that triggers the node’s execution.array
(required): The array variable to be cleared. If not provided, an empty array will be used as the default value.flow
: The flow output that is triggered after the array is cleared.array
: The cleared array variable, which will be an empty array.flow
input to the desired trigger point in your spell, such as a button click or the completion of a previous action.array
input to the array variable you want to clear. If left unconnected, an empty array will be used.flow
output to the next action you want to perform after the array is cleared.array
output to other nodes that require the cleared array.selectedItems
to store the user-selected items.selectedItems
array based on user input.selectedItems
array using nodes like For Each or Filter.flow
output of the last processing node to the flow
input of a Clear node.selectedItems
array to the array
input of the Clear node.selectedItems
array, preparing it for a new round of user selection.array
input is properly connected to the array variable you want to clear. If left unconnected, the Clear node will output an empty array, but it won’t modify any existing array variables.