-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Area/DataMapperArtifacts: Datamapper and inline data mapperArtifacts: Datamapper and inline data mapperPriority/HighType/Bug
Milestone
Description
Description
When a transformation contains multiple dependent sub-mappings, focusing into one of these sub-mappings does not display the mappings associated with it. As a result, users cannot view or inspect the mapping logic within dependent sub-mappings.
Steps to Reproduce
isolated function transform(Input input) returns Output =>
let decimal subtotal = calculateSum(input.quantities),
decimal delivery = subtotal * 0.1d,
decimal total = subtotal + delivery,
string status = total > 500d ? "Discount Applied" : "Standard Rate"
in
{
orderId: input.id,
items: input.lineItems,
status: status
};
- Visualize the above transformation function
- Focus into a sub-mapping such as
delivery
Version
BI v1.5.3 | Ballerina v5.6.3
Environment Details (with versions)
No response
Metadata
Metadata
Assignees
Labels
Area/DataMapperArtifacts: Datamapper and inline data mapperArtifacts: Datamapper and inline data mapperPriority/HighType/Bug