How do I return values of parameters so they can be used as mapped options?

What is the correct NoSQL (CosmosDB) syntax to use to return the values (circled in blue) in a format that I can use them as mapped options in a drop down box?.

This is my current query:
Select c.CaseActions
From c
WHERE c.Name = "Case Actions"

It returns this:

2022-11-04-0908-23PM

Thanks!

Hello @tj.couey,

You would need to enable the transformer and return something like

return data.map(element => element.ActionType)