This service flattens the inputlist by one level. It returns the result of the flattening. For example, given the input list [[1,2,3],[4,5,6],[[7]]] it will return [1,2,3,4,5,6,[7]].
Input ports
inputlist - The list of values to be one-level flattened. This is mandatory parameter.
Output ports
outputlist - The result of one-level flattening the inputlist.