How to get the old or deleted flows details

How can I get the details of old or deleted flows in Decisions? Is there any step or query that will help me achieve this?

Comments

  • amershaik_Decisions
    edited June 2024

    Yes, in decisions we've element_registration table, using query you'll able to retrieve the flow details.

    You can refer the below query example:

    SELECT er.entity_name AS flow_name, ef.full_path AS folder_path 

    FROM element_registration AS er

    JOIN entity_folder AS ef

    ON er.entity_folder_id=ef.entity_folder_id

    WHERE er.element_registration_type_name = 'Flow'

  • Additionally, You can retrieve flow details even if the flow was soft-deleted or deleted using user actions. However, if the flow details are deleted from the element_registration table, you won't be able to retrieve the details for the same.

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion