We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm importing an existing state machine that has a Choice state with a condition like this:
{ "Type": "Choice", "Choices": [{ "And": [{ "Variable": "$.url", "IsPresent": true }, { "Variable": "$.url", "IsString": true } ], "Comment": "Check if $.url exists and is string", "Next": "Pass" } ], "Default": "Set default URL" }
After importing, the choice condition becomes: (undefined) && (undefined)
(undefined) && (undefined)
The condition in the exported JSON turns into this:
"And": [ {}, {} ],
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I'm importing an existing state machine that has a Choice state with a condition like this:
After importing, the choice condition becomes:
(undefined) && (undefined)
The condition in the exported JSON turns into this:
The text was updated successfully, but these errors were encountered: