I'm trying to create an array without the object labels (I believe that's what they're called). The goal is to also remove any null objects but I believe I can use the select function to remove that.
To explain it in more simple terms...
The current output that I want to fix is this:
[
{
"Keyword": "Keyword1"
},
{
"Keyword": "Keyword3"
},
{
"Keyword": "Keyword5"
},
{
"Keyword": "Keyword6"
},
{
"Keyword": "Keyword2"
},
{
"Keyword": "Keyword4"
},
{
"Keyword": null
},
{
"Keyword": "Keyword7"
},
{
"Keyword": "Keyword8"
},
{
"Keyword": "Keyword9"
}
]
What I want that array to look like is this:
[
"keyword1",
"keyword3",
"keyword5",
"keyword6",
"keyword2",
"keyword4",
"keyword7",
"keyword8",
"keyword9"
]
This is the output in a Compose action. Which is honestly taking the inputs of another compose that used the Union expression to remove duplicates.

Does anyone have any thoughts on how I can remove the curly brackets and the "keyword" label in front of what will have real keywords?