From 1c9eff76cf9716d5e1738e8db19d66f73c9aad28 Mon Sep 17 00:00:00 2001 From: Yiyun Liao Date: Mon, 28 Oct 2024 12:09:43 +0100 Subject: [PATCH] Specify synchronization mode when syncing object deletion --- .../activities/object-activities/deleting-objects.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/object-activities/deleting-objects.md b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/object-activities/deleting-objects.md index 193ab989213..2f626a07969 100644 --- a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/object-activities/deleting-objects.md +++ b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/object-activities/deleting-objects.md @@ -156,10 +156,10 @@ No before or after delete events will be executed in this case. 1. Searches the device database for all objects that reference the deleted object. 1. Clears all references to the deleted object from all objects found previously. 1. Deletes the object from the device database. -1. Marks the object as deleted in the offline database, which makes it possible to synchronize the deletion with the server. +1. Marks the object as deleted in the offline database, which makes it possible to synchronize the deletion with the server using [Synchronize unsynchronized objects](/refguide/synchronize/#unsynchronized-objects) or [Synchronize all objects](/refguide/synchronize/#all-objects). Before and after events for the deleted object will be executed upon synchronization. #### Deleting a Non-Persistable Object -Deleting a NPE is not supported in a nanoflow in an offline-first app. +Deleting an NPE is not supported in a nanoflow in an offline-first app.