Data Store output a simple array

Hey guys, so I’m having a hard time with this one
I’m trying to convert data from a Data Store (Search Records) module into a simple array that looks something like this:

{“tags”:[30,31,32]}

Apparently the Output from Data Store is way more complex, although I set it to just store a key “Tags” and a value “30” in this example.

How can I get the data properly in a simple array?

Perhaps an array aggregator after the search module?

{"tags":[30,31,32]} is not an array, but a collection containing a property “tags”

An array is just this bit:

[30,31,32]

2 Likes