@pipedream/raindrop
Version:
Pipedream Raindrop.io Components
18 lines (16 loc) • 540 B
JavaScript
import raindrop from "../../raindrop.app.mjs";
export default {
key: "raindrop-list-collections",
name: "Retrieve All Collections",
description: "Retrieves all collections. [See the docs here](https://developer.raindrop.io/v1/collections/methods#get-root-collections)",
version: "0.0.4",
type: "action",
props: {
raindrop,
},
async run({ $ }) {
const response = await this.raindrop.getCollections($);
$.export("$summary", `Successfully retrieved ${response.length} collection(s)`);
return response;
},
};