Use Noticeable to announce new features, your latest releases, and relevant news. Improve user engagement with an easy to use newsfeed and changelog.
Emit new events when a new email subscription created. See the docs
Emit new events when an email subscription is deleted. See the docs
Emit new events when a new publication created. See the docs
Emit new events when a new publication deleted. See the docs
The Noticeable API on Pipedream allows you to automate the management of your project's news and updates efficiently. By integrating Noticeable with Pipedream, you can trigger workflows based on new publications, update timelines, and synchronize content across various platforms. This can help keep your users or team informed about the latest changes, releases or announcements with minimal manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
noticeable: {
type: "app",
app: "noticeable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.noticeable.io/graphql`,
headers: {
"Authorization": `Apikey ${this.noticeable.$auth.api_key}`,
},
params: {
//Replace the query below with your own
query: `query { organization { projects(first: 10) { pageInfo { hasNextPage } edges {
node { name posts(last: 10) { edges { node { title permalink } } } } } } } }`,
},
})
},
})
The MySQL application on Pipedream enables direct interaction with your MySQL databases, allowing you to perform CRUD operations—create, read, update, delete—on your data with ease. You can leverage these capabilities to automate data synchronization, report generation, and event-based triggers that kick off workflows in other apps. With Pipedream's serverless platform, you can connect MySQL to hundreds of other services without managing infrastructure, crafting complex code, or handling authentication.
import mysql from '@pipedream/mysql';
export default defineComponent({
props: {
mysql,
},
async run({steps, $}) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/mysql
const queryObj = {
sql: "SELECT NOW()",
values: [], // Ignored since query does not contain placeholders
};
return await this.mysql.executeQuery(queryObj);
},
});