Where can learn About Arguments ?
What is different among in/out/in,out?
Have a look below thread.
Arguments : These are used when you want to pass the values from one workflow to another workflow
Argument Types:
Lets say there are 2 workflows, wk1, wk2
In: This type can be used when one workflow accepts some value as an input from another workflow
Ex: Lets say wk2 needs input value from wk1. Then in wk2 we have to create an argument of type In
Out: This type can be used when workflow sends some value out of the current workflow
Ex: Lets say wk2 has some value, to send this value out of this workflow we have to create an argument of type out in wk2
In/Out:This type can be used when we want to use combination of both In and Out types. That means accepting some input value and also sending some value as an output
Ex: Lets say wk2 needs some input value, also it process that input values and want to send some value from out of wk2 workflow. Then we have to create In/Out type in wk2 workflow
Go through below example fro better understanding
It’s better to go to the foundation course in the academy and you have good info on the arguments
Hope this may help you
Thanks
Great explanation! Thank you so much!