@apify/n8n-nodes-apify
Version:
n8n nodes for Apify
22 lines • 1.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.properties = exports.option = exports.name = void 0;
const properties_1 = require("./properties");
const hooks_1 = require("./hooks");
exports.name = 'Get list of datasets';
const rawOption = {
name: 'Get List of Datasets',
value: 'Get list of datasets',
action: 'Get list of datasets',
description: 'Lists all of a user s datasets The response is a JSON array of objects where each object contains basic information about one dataset By default the objects are sorted by the createdAt field in ascending order therefore you can use pagination to incrementally fetch all datasets while new ones are still being created To sort them in descending order use desc 1 parameter The endpoint supports pagination using limit and offset parameters and it will not return more than 1000 array elements',
routing: {
request: {
method: 'GET',
url: '=/v2/datasets',
},
},
};
const { properties, option } = (0, hooks_1.runHooks)(rawOption, properties_1.properties);
exports.properties = properties;
exports.option = option;
//# sourceMappingURL=index.js.map