Learning Resources

removeRemoteLinkStep - Helper Steps API Reference

This documentation provides a reference to the removeRemoteLinkStep step. It belongs to the @medusajs/core-flows package.

Example#

Code
1import { 2  createWorkflow3} from "@medusajs/workflows-sdk"4import {5  removeRemoteLinkStep6} from "@medusajs/core-flows"7import {8  Modules9} from "@medusajs/utils"10
11const helloWorldWorkflow = createWorkflow(12  "hello-world",13  () => {14    removeRemoteLinkStep([{15      [Modules.PRODUCT]: {16        product_id: "prod_123",17      },18    }])19  }20)

Input#

RemoveRemoteLinksStepInputRemoveRemoteLinksStepInput

Output#

DeleteEntityInputDeleteEntityInput
Was this page helpful?