DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • DataWeave Interview Question: Concatenate Elements of an Array
  • Reversing an Array: An Exploration of Array Manipulation
  • Unlocking the Potential of Binary Search Trees with C# Programming
  • Sliding Window

Trending

  • Why Stable RAG Answers Can Still Hide Unstable Evidence
  • Building a Spring AI Assistant With MCP Servers: A Step-by-Step Tutorial
  • 5 AI Security Incidents That Broke Things in Production (and What They Have in Common)
  • Implementing Secure API Gateways for Microservices Architecture
  1. DZone
  2. Culture and Methodologies
  3. Career Development
  4. DataWeave Interview Question: Reverse an Array After Combining Its Elements

DataWeave Interview Question: Reverse an Array After Combining Its Elements

This article will help you practice your DataWeave skills in MuleSoft. Use the article as a tutorial for learning more about DataWeave.

By 
Gaurav Dubey user avatar
Gaurav Dubey
·
Jan. 20, 22 · Tutorial
Likes (3)
Comment
Save
Tweet
Share
6.8K Views

Join the DZone community and get the full member experience.

Join For Free

This article will help you practice your DataWeave skills in MuleSoft. Use the article as a tutorial for learning more about DataWeave.

Let's get started. 

Input:

JSON
 
[

"uat", ["sit", "qa", "prod"]

]

Output:

[

  "prod",

  "qa",

  "sit",

  "uat"

]


Let's talk about the solution now.

In the first step, we will combine all the elements of an array into a single array using flatten function.

Step 1 Code:

DataWeave Script

 
%dw 2.0

output application/json

var combinedPayload = (flatten(payload))

---

combinedPayload


Step 1 Output:

JSON
 

[

  "uat",

  "sit",

  "qa",

  "prod"

]


In the second step, we will reverse the contents of an array using the range selector.

Step 2 Code:

DataWeave Script

 

%dw 2.0

output application/json

var combinedPayload = (flatten(payload))

---

combinedPayload[(sizeOf(combinedPayload)) -1 to 0]


Step 2 Output:

JSON
 
[

  "prod",

  "qa",

  "sit",

  "uat"

]


We have used sizeOf function to get the size of our combinedPayload along with the range selector to get the array in reverse format.

Happy Learning!

Data structure Element Interview (journalism)

Opinions expressed by DZone contributors are their own.

Related

  • DataWeave Interview Question: Concatenate Elements of an Array
  • Reversing an Array: An Exploration of Array Manipulation
  • Unlocking the Potential of Binary Search Trees with C# Programming
  • Sliding Window

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook