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 thestream
field contains. Defaults toname
.-
name
:stream
is the name of the stream. -
id
:stream
is 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"
}
}