You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get the Savepoint's rollback client ID. This returns the identifier (ClientOptions.clientID) associated with the Linked QL client of last rollback operation (savepoint.rollback()).
// Rollback savepointconstsavepoint=awaitclient.database('database_1').savepoint();awaitsavepoint.rollback({desc: 'Changes no more necessary',});
// Who rolled back savepoint?constsavepoint=awaitclient.database('database_1').savepoint({lookAhead: true});console.log(savepoint.rollbackClientID());// 'johndoe@example.com'