changestream - qlik-oss/gopherciser GitHub Wiki

ChangeStream action

Change to specified stream. This makes the apps in the specified stream selectable by actions such as openapp.

  • mode: Decides what kind of value the stream field contains. Defaults to name.
    • 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 on mode.

Example

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"
     }
}
⚠️ **GitHub.com Fallback** ⚠️