@ikas/admin-api-client
Version:
ikas public node api client for store apps and private apps
26 lines • 730 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ADD_CUSTOM_TIMELINE_ENTRY = exports.LIST_STOCK_LOCATIONS = exports.LIST_SALES_CHANNEL = void 0;
const graphql_request_1 = require("graphql-request");
exports.LIST_SALES_CHANNEL = (0, graphql_request_1.gql) `
query listSalesChannel {
listSalesChannel {
id
name
}
}
`;
exports.LIST_STOCK_LOCATIONS = (0, graphql_request_1.gql) `
query listStockLocation {
listStockLocation {
id
name
}
}
`;
exports.ADD_CUSTOM_TIMELINE_ENTRY = (0, graphql_request_1.gql) `
mutation addCustomTimelineEntry($input: TimelineInput!) {
addCustomTimelineEntry(input: $input)
}
`;
//# sourceMappingURL=queries.js.map
;