How to modify the custom the name and display it in mongodb

Hi all!
In workflow, for example double relax, how to customize the name for different structure files into the mongodb “name”?
When I use only jobs, I can easily change it to the specified name “test11111”, as shown in the red box.
However, when I use workflow like double relax, I specify the name as test however it doesn’t take effect in mongdb’s outputs, as shown in the blue box.

Hi @luogx37, you can call .append_name on any jobflow maker/job/flow (optionally with prepend=True to put any additions at the start of the name) which will recursively update all names in a flow

Thank you! It’s works well!!!