Skip to main content

Connect Supabase and Monday in our serverless environment

Use this template to Read rows from Supabase table using them to create a item in a Monday board.

Share

Read rows from Supabase table

Used integrations:
class SupabaseSourceSelect {
async init() {
// TODO: Create your supabase credential
// More info at https://yepcode.io/docs/integrations/supabase/#credential-configuration
this.supabase = yepcode.integration.supabase(
"your-supabase-credential-name"
);
}

async fetch(publish, done) {
// TODO: Customize table, columns and filters
// You may check the full API documentation at:
// https://supabase.com/docs/reference/javascript/select
const {
data,
error
} = await this.supabase
.from("your-table")
.select("column1, column2")
.eq("column1", "column-1-filter");
if (error) {
throw error;
}
for (const row of data) {
// TODO: map your row to an item
const item = {
...row
};
await publish(item);
}
done();
}

async close() {}
}

Do you need help solving this integration with YepCode?

Let's talk

Create a item in a Monday board

Used integrations:
class GraphqlTargetMondayCreateItem {
async init() {
// TODO: Create your GraphQL credential with monday information and base url: https://api.monday.com/v2/
// More info at https://yepcode.io/docs/integrations/http/#credential-configuration
// Official docs: https://developer.monday.com/api-reference/docs/authentication
this.monday = await yepcode.integration.graphql(
"your-monday-credential-name"
);
}
async consume(item) {
// TODO: Customize your GraphQL query
// IMPORTANT: This example uses the api version "2023-10" recommended by Monday. Some fields could change between versions, so check the official docs for more info.
// More info: https://developer.monday.com/api-reference/docs/items
try {
const data = await this.monday.request(
gql`
mutation createItem(
$boardId: ID!
$groupId: String!
$itemName: String!
$columnValues: JSON!
) {
id
}
`, {
boardId: item.boardId,
groupId: item.groupId,
itemName: item.itemName,
columnValues: JSON.stringify(item.values),
}
);

console.log(JSON.stringify(data, null, 2));
} catch (error) {
console.log(JSON.stringify(error, null, 2));
}
}

async close() {}
}

Other combinations

View recipes

Related recipes

FAQs

YepCode is a SaaS platform that allows to create, execute and monitor integrations and automations using source code in a serverless environment.

We like to call it the Zapier for developers, since we bring all the agility and benefits of NoCode tools (avoid server provisioning, environment configuration, deployments,...), but with all the power of being able to use a programming language like JavaScript or Python.

These recipes are a good starting point for you to build your own YepCode processes and solve your integration and automation problems.

You only have to fill the sign up form and your account will be created with our FREE plan (no credit card required).

YepCode has been created with a clear enterprise approach (multi-tenant environment, team management, high security and auditing standards, IdP integrations, on-premise options,...) so we can be the Swiss army knife of any team of engineering, especially those that need to extract or send information to external systems, and where a certain dynamism or adaptation to change is necessary in that process.

Sure! You just need to do some configuration to allow YepCode servers to connect to that service. Check our docs page to get more information.