Set a client-side state variable. No server round-trip.Documentation Index
Fetch the complete documentation index at: https://prefab.prefect.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
JSON Schema for the SetState action.
Set a client-side state variable. No server round-trip.Documentation Index
Fetch the complete documentation index at: https://prefab.prefect.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
{
"type": "object",
"properties": {
"action": {
"const": "setState",
"default": "setState",
"type": "string"
},
"key": {
"description": "State key or dot-path to set",
"type": "string"
},
"value": {
"description": "Value to set."
}
},
"required": [
"action",
"key",
"value"
]
}