I have a usecase where I need to return an integer as output from a synapse notebook in pipeline and pass this output in next stage of my pipeline.
Currently mssparkutils.notebook.exit() takes only string values. Is there any utility methods available for this? I know we can cast the integer to string type and send it to the exit("") method. I wanted to know if I could achieve this without casting.