How to use the datax-common.serviceGetApi function in datax-common

To help you get started, we’ve selected a few datax-common examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github microsoft / data-accelerator / Website / Packages / datax-pipeline / src / modules / flowList / api.js View on Github external
export const getFlowsList = () =>
    serviceGetApi(Constants.serviceRouteApi, Constants.serviceApplication, Constants.services.flow, 'flow/getall/min');
github microsoft / data-accelerator / Website / Packages / datax-pipeline / src / modules / flowDefinition / api.js View on Github external
export const getProduct = name =>
    serviceGetApi(Constants.serviceRouteApi, Constants.serviceApplication, Constants.services.flow, 'flow/get', { flowName: name });