Undelete Entities of a table\data structure

kimjohn
edited June 4 in General

Can we undelete the soft deleted entities of a table\data structure in decisions? Do we have a step to perform this?

Comments

  • You can undelete the soft deleted entities.

    Unfortunately, no step is available to undelete the entities currently. However you can do this using query by updating a few fields of the entity.

    To undelete entity update the following fields:

    • deleted: False
    • deleted_by: NULL
    • deleted_on: NULL

    You can run a selected query to fetch all entities and compare the difference between a deleted entity and a normal entity.

Sign In or Register to comment.