Utility components

Other helpful utility components

meya.pass

A simple pass through component. The component does nothing and returns nothing. Useful for terminating a flow, connecting branches or to be used as a temporary placeholder.

Properties

-None-

component: meya.pass

meya.set

Allows you to set data in the specified datastore scope.

PropertyDescription
keythe key for the dataRequired
valueThe value to setRequired
scopeThe scope for the dataOptional. Default: flow
component: meya.set
properties:
    key: favorite_show
    value: "It's Always Sunny in Philadelphia"
    scope: user

meya.unset

Allows you to unset data in the specified datastore scope. This removes the data associated with the key from the datastore

PropertyDescription
keythe key for the data to removeRequired
scopeThe scope for the dataOptional. Default: flow
component: meya.unset
properties:
    key: favorite_show
    scope: user