0

I have an app that can have one or more streams
Example:

Book of author A
Book of author B
Book of author C

So my queries can have one or more relationship filters.
Assuming that I would like to use only one template for more views, and a view can have more streams so I can't have the names of each one in my template, how can i do that?
Basically in my template I would like to have a unique list even if I got more streams

AsDynamic(Data["Default"]) //This should get all the streams in my data

Is that possible? Maybe aggregating them in Visual query?
I'm trying to have an out stream coming from many but giving the same name I got and error.

1 Answers1

1

At the moment this is not possible (2sxc 8.5.6). There are a few problems related to this idea

  1. the same item could occur multiple times, this is not supposed to happen in a stream
  2. you will probably loose the "which author was this for" information

As of now, I recommend to either just merge them in js or server-side code if this is what you need.

iJungleBoy
  • 5,325
  • 1
  • 9
  • 21