What are the 5 main flow types?
What is the most common flow type?
Record-Triggered flow
For the screen flow type of flow, what is the trigger and use cases?
Trigger: User launches
Use cases: Guided wizards, collect input
For the record-triggered type of flow, what is the trigger and use cases?
Trigger: record created/Updated/Deleted
Use cases: Auto-update fields, create records
For the scheduled flow type of flow, what is the trigger and use cases?
Trigger: time-based schedule
Use cases: Nightly cleanup, weekly reminders
For the autolaunched flow type of flow, what is the trigger and use cases?
Trigger: called by other automation
Use cases: Reusable logic, subflows
For the Platform event flow type of flow, what is the trigger and use cases?
Trigger: Platform event
Use cases: real-time integrations
For record-triggered flows, what are the two timing options?
Which type of update should be used for simple field updates on same record only?
Fast field updates
What are fast field updates (record-triggered flow timing)?
What are actions and related records (record-triggered flow timing)?
What are 4 types of flow elements?
What is the purpose of bulkification?
Handle multiple records efficiently (avoid governor limits)
What are govern limits?
You can only make a limited number of queries and DML (Create/Update/Delete) operations per transaction.
What are DML operations?
Create, Update, Delete operations
What is bulkification?
Designing flows to process multiple records in a single operation rather than one at a time
Whats the important thing to remember about bulkification?
Never put Get Records or Create/Update/Delete inside a loop