
Description
This Node stores information in the Context object. With this approach, you can use the stored value throughout the session on subsequent user inputs.Parameters
| Parameter | Type | Description |
|---|---|---|
| Key | CognigyScript | The key where to store in the Context object. For example, if you enter requestedProduct, the value is assigned to the context.requestedProduct key. You can use nested keys, for example, entering user.profile.name assigns the value to the context.user.profile.name key. This parameter doesnโt support dashes or hyphens. |
| Value | CognigyScript | The value to store in the Context object. |
| Mode | Select |
|
Storing an Object
Storing an Object
If you want to store an object in the Context object, use
.preserveType() at the end of the CognigyScript expression to keep it as an object. For example, input.slots.city[0].preserveType() stores the Slot object for the first found city entity in the Context object.