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.
Property | Description | |
---|---|---|
key | the key for the data | Required |
value | The value to set | Required |
scope | The scope for the data | Optional. 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
Property | Description | |
---|---|---|
key | the key for the data to remove | Required |
scope | The scope for the data | Optional. Default: flow |
component: meya.unset
properties:
key: favorite_show
scope: user
Updated over 6 years ago