How to get the old or deleted flows details
Comments
-
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.
