Aggregate values into array in DQL

Is it possible to aggregate specific field of related nodes into array?

Can i somehow modify this query:

query {
  items(func: uid(0x1, 0x2, 0x3)) @normalize {
    related {
      fields1: fieldName1
      fields2: fieldName2
    }
  }
}

To get something like this:

{
  "items": [
    {
      "fields1": ["a", "b", "c"],
      "fields2": [1, 2, 3]
    },
    ...
  ]
}

I do not really care about order or uniqueness. I just need flattened response across related nodes
Variables do not seem to work, even though sum of value variables with strings does not trigger any errors

No. This is not possible. Can I ask what is the goal?

It’s kind of convenient. Do not have to deal with arrays of objects with single fields
I have nodes linked with various tags. Would be great to get an array of tag names to pass to my frontend.