changestream - qlik-oss/gopherciser GitHub Wiki
Change to specified stream. This makes the apps in the specified stream selectable by actions such as openapp.
-
mode: Decides what kind of value thestreamfield contains. Defaults toname.-
name:streamis the name of the stream. -
id:streamis the ID if the stream.
-
-
stream: Name or id of stream to change to depending onmode.
Make apps in stream Everyone selectable by subsequent actions.
{
"label": "ChangeStream Everyone",
"action": "changestream",
"settings": {
"mode": "name",
"stream" : "Everyone"
}
}Make apps in stream with id ABSCDFSDFSDFO1231234 selectable subsequent actions.
{
"label": "ChangeStream Test1",
"action": "changestream",
"settings": {
"mode": "id",
"stream" : "ABSCDFSDFSDFO1231234"
}
}