I'm trying to go from this:
{
"fruits": [
{
"name": "Apple",
"price": 35
},
{
"name": "Banana",
"price": 12
},
{
"name": "Grapes",
"price": 45
},
{
"name": "Pineapple",
"price": 200
}
]
}
To this:
[ "Apple", "Banana", "Grapes", "Pineapple" ]
Without looping through the first array. Any ideas on how to do that? Thanks!
Solved! Go to Solution.
Like this:
Create a select action. Put it into text mode. Expression for from is:
outputs('Compose')['fruits']
expression for map is:
item()['name']
output is:
[
"Apple",
"Banana",
"Grapes",
"Pineapple"
]
Like this:
Create a select action. Put it into text mode. Expression for from is:
outputs('Compose')['fruits']
expression for map is:
item()['name']
output is:
[
"Apple",
"Banana",
"Grapes",
"Pineapple"
]
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Did you know that you could restore a deleted flow? Check out this helpful article.
User | Count |
---|---|
32 | |
31 | |
24 | |
24 | |
20 |
User | Count |
---|---|
59 | |
57 | |
43 | |
37 | |
28 |