1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "fail": "",
12 "dataset": {
13 "id": null,
14 "items": [
15 {
16 "id": 1,
17 "text": "My first item"
18 },
19 {
20 "id": 2,
21 "text": "My second item"
22 }
23 ]
24 },
25 "output": {
26 "outputMessage": "Actor finished"
27 },
28 "statusMessage": ""
29};
30
31
32const run = await client.actor("useful-tools/wait-and-finish").call(input);
33
34
35console.log('Results from dataset');
36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
37const { items } = await client.dataset(run.defaultDatasetId).listItems();
38items.forEach((item) => {
39 console.dir(item);
40});
41
42