Skip to content

Join workflow operator

Purpose

The Join operator merges multiple inputs in one composite output.
It's useful when designing a parallel portion of the workflow where you need to process the same information with different models. You first use the Fork operator to pass the input to two or three models, then merge the models' results with Join.

A Join must have two or three input connections to upstream blocks to be considered valid.
It can be the last block of the workflow.

Output

The output of a Join block is the composition of the outputs of its upstream blocks and has this structure:

{
        first block ID:{
            first block output body
        }
        second block ID:{
            second block output body
        }
        [
        third block ID:{
            third block output body
        }
        ]
}

Block properties

A Join operator block has these properties:

  • The unique block ID (read only)
  • Block name