A query returns a partial list of possible values.
Which flow control module should be used to ensure all the possible results are queried?
Aggregator
Repeater
Iterator
Router
Understanding the Requirement:
The query returns only a partial list of possible values.
The task is to ensure that all results are processed by iterating through multiple queries or pages of data.
Why Option B ("Repeater") is Correct:
TheRepeatermodule is designed to repeat an operation a specified number of times or until a condition is met.
It is commonly used for querying paginated data or when a system limits the number of records returned in a single request.
In this case, the Repeater ensures all possible values are queried by making additional requests to retrieve subsequent pages or results.
Why the Other Options are Incorrect:
Option A ("Aggregator"):
The Aggregator combines multiple data bundles into a single output. It does not handle iterative queries or pagination.
Option C ("Iterator"):
The Iterator splits an array into individual items for processing. It does not handle querying for additional data or looping through requests.
Option D ("Router"):
The Router splits the flow of a scenario into multiple paths based on conditions. It is unrelated to iterative querying.
Steps to Configure the Repeater:
Add theRepeatermodule to your scenario.
Configure the number of repetitions or the condition to continue querying (e.g., based on the presence of additional data).
Link the Repeater to the module responsible for retrieving the data, ensuring it processes all available results.
How This Solves the Problem:
The Repeater module ensures that all possible results are queried by iteratively sending requests until no more data is available.
References and Supporting Documentation:
Adobe Workfront Fusion: Repeater Module Documentation
Workfront Community: Using Flow Control Modules
Submit