### Fix Missing Query Parameter in Documentation Example #### Summary This pull request addresses a missing query parameter in the Medusa documentation's example for making a request to the workflow endpoint. #### Issue The example in the documentation incorrectly shows: ``` curl http://localhost:9000/workflow ``` This causes an issue when running the workflow in code, specifically in `step-2`, where the `name` parameter is `undefined`. #### Expected Behavior The correct curl command should include the `name` query parameter, like so: ``` curl http://localhost:9000/workflow?name=john ``` #### Code Example Here is the code that demonstrates the issue: ```ts const step2 = createStep("step-2", async ({ name }: WorkflowInput) => { return new StepResponse(`Hello ${name} from step two!`) }) ``` When running the incorrect curl command, the output for `step-2` returns: ``` "Hello undefined from step two!" ``` #### Fix The pull request proposes updating the example curl command in the documentation to: ``` curl http://localhost:9000/workflow?name=john ``` This ensures that the `name` parameter is correctly passed and resolves the issue of `undefined` values in `step-2`. #### Steps to Reproduce 1. Implement the workflow and API code as described in the [documentation](https://docs.medusajs.com/v2/basics/workflows#4-test-workflow). 2. Run the curl command: ``` curl http://localhost:9000/workflow ``` 3. The console will output `Hello undefined from step two!` due to the missing `name` parameter. #### Suggested Resolution Update the curl command in the [documentation](https://docs.medusajs.com/v2/basics/workflows#4-test-workflow) to: ``` curl http://localhost:9000/workflow?name=john ``` ### Related Issue Link to the issue: [Medusa Issue #9628](https://github.com/medusajs/medusa/issues/9628) Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
Medusa
Documentation | Website
Building blocks for digital commerce
Getting Started
Visit the Quickstart Guide to set up a server.
Visit the Docs to learn more about our system requirements.
What is Medusa
Medusa is a set of commerce modules and tools that allow you to build rich, reliable, and performant commerce applications without reinventing core commerce logic. The modules can be customized and used to build advanced ecommerce stores, marketplaces, or any product that needs foundational commerce primitives. All modules are open-source and freely available on npm.
Learn more about Medusa’s architecture and commerce modules in the Docs.
Roadmap, Upgrades & Plugins
You can view the planned, started and completed features in the Roadmap discussion.
Follow the Upgrade Guides to keep your Medusa project up-to-date.
Check out all available Medusa plugins.
Community & Contributions
The community and core team are available in GitHub Discussions, where you can ask for support, discuss roadmap, and share ideas.
Our Contribution Guide describes how to contribute to the codebase and Docs.
Join our Discord server to meet other community members.
Other channels
License
Licensed under the MIT License.