Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created January 13, 2024 15:05
Show Gist options
  • Save TheShubhamVsnv/b25fe429759acce7e83ecd72f0c1c2a9 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/b25fe429759acce7e83ecd72f0c1c2a9 to your computer and use it in GitHub Desktop.
// Apex Trigger example with Recursive Depth Limit
trigger CustomObjectTrigger on Custom_Object__c (before update) {
if(RecursionHandler.recursionDepth < RecursionHandler.maxDepth) {
RecursionHandler.recursionDepth++;
// Add your trigger logic here
RecursionHandler.recursionDepth--;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment