Helper functions and functional utilities to use within your Pipedream workflows
Accepts a base64-encoded string, returns a decoded UTF-8 string
Add or update a single record in your Pipedream Data Store.
Get the difference, intersection, union, or symetric difference of two arrays/sets.
Add or update multiple records to your Pipedream Data Store.
Pipedream provides a set of helper functions that make it easy to manipulate
and work with data in your workflow. You can use these helper functions to:
Here are some examples of what you can build using the Helper Functions API:
With the Data Stores API, you can build applications that:
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})