Back to Integrations
integrationGoogle BigQuery node
integrationNocoDB node

Google BigQuery and NocoDB integration

Save yourself the work of writing custom integrations for Google BigQuery and NocoDB and use n8n instead. Build adaptable and scalable Data & Storage, and Development workflows that work with your technology stack. All within a building experience you will love.

How to connect Google BigQuery and NocoDB

  • Step 1: Create a new workflow
  • Step 2: Add and configure nodes
  • Step 3: Connect
  • Step 4: Customize and extend your integration
  • Step 5: Test and activate your workflow

Step 1: Create a new workflow and add the first step

In n8n, click the "Add workflow" button in the Workflows tab to create a new workflow. Add the starting point – a trigger on when your workflow should run: an app event, a schedule, a webhook call, another workflow, an AI chat, or a manual trigger. Sometimes, the HTTP Request node might already serve as your starting point.

Google BigQuery and NocoDB integration: Create a new workflow and add the first step

Step 2: Add and configure Google BigQuery and NocoDB nodes

You can find Google BigQuery and NocoDB in the nodes panel. Drag them onto your workflow canvas, selecting their actions. Click each node, choose a credential, and authenticate to grant n8n access. Configure Google BigQuery and NocoDB nodes one by one: input data on the left, parameters in the middle, and output data on the right.

Google BigQuery and NocoDB integration: Add and configure Google BigQuery and NocoDB nodes

Step 3: Connect Google BigQuery and NocoDB

A connection establishes a link between Google BigQuery and NocoDB (or vice versa) to route data through the workflow. Data flows from the output of one node to the input of another. You can have single or multiple connections for each node.

Google BigQuery and NocoDB integration: Connect Google BigQuery and NocoDB

Step 4: Customize and extend your Google BigQuery and NocoDB integration

Use n8n's core nodes such as If, Split Out, Merge, and others to transform and manipulate data. Write custom JavaScript or Python in the Code node and run it as a step in your workflow. Connect Google BigQuery and NocoDB with any of n8n’s 1000+ integrations, and incorporate advanced AI logic into your workflows.

Google BigQuery and NocoDB integration: Customize and extend your Google BigQuery and NocoDB integration

Step 5: Test and activate your Google BigQuery and NocoDB workflow

Save and run the workflow to see if everything works as expected. Based on your configuration, data should flow from Google BigQuery to NocoDB or vice versa. Easily debug your workflow: you can check past executions to isolate and fix the mistake. Once you've tested everything, make sure to save your workflow and activate it.

Google BigQuery and NocoDB integration: Test and activate your Google BigQuery and NocoDB workflow

Automate monthly CrUX report transfer from BigQuery to NocoDB with data cleanup

Overview

This n8n workflow automatically retrieves the monthly CrUX (Chrome User Experience) Report from Google BigQuery and updates the data in NocoDB.
It removes the previous month’s data before inserting the new dataset, ensuring your database always contains the latest CrUX rankings for website origins.
The flow is fully automated, using schedule triggers to handle both data cleanup and data insertion each month.

✅ Tasks

⏰ Runs automatically on a monthly schedule
🔢 Converts the month name to a numeric value for table selection
🧹 Deletes last month’s CrUX data from NocoDB
🌐 Queries Google BigQuery for the latest monthly dataset
💾 Inserts the new CrUX rankings into NocoDB
⚙️ Keeps your database up to date with zero manual effort

🛠 How to Use

1️⃣ Set Up BigQuery Access
Connect your Google BigQuery credentials.
Make sure your project includes access to the chrome-ux-report public dataset.

2️⃣ Adjust the Query
In the Google BigQuery node, change the LIMIT value to control how many top-ranked sites are retrieved.
Ensure the {{ $json.table }} field correctly references the dataset for the desired month (e.g., 202509).

3️⃣ Prepare NocoDB Table
Create a table in NocoDB with fields: origin, crux_rank, and any additional metadata you wish to track.

4️⃣ Schedule Automation
The workflow includes two Schedule Trigger nodes:
One runs the data cleanup process (deletes last month).
One runs the data insertion for the new month.

5️⃣ Run or Activate the Workflow
Activate it to run automatically each month.
You can also run it manually to refresh data on demand.

📋 Prerequisites

Before running this workflow, make sure you complete the following setup steps:

🧱 Enable BigQuery API
Go to Google Cloud Console → APIs & Services
Enable the BigQuery API for your project.

📊 Access the Chrome UX Report Dataset
In BigQuery, search for “Chrome UX Report” in the Marketplace or go directly to:
https://console.cloud.google.com/marketplace/product/chrome-ux-report/chrome-ux-report
Click “View Dataset” and add it to your BigQuery project.

🔑 Connect BigQuery to n8n
In n8n, create credentials for your Google BigQuery account using Service Account Authentication.
Ensure the account has permission to query the chrome-ux-report dataset.

🗄️ Create a NocoDB Table
In NocoDB, create a new table to store your CrUX data with the following fields:
origin → Short text
crux_rank → Number

⚙️ Connect NocoDB to n8n
Use your NocoDB API Token to connect and allow the workflow to read/write data.

What is CrUX Rank?

CrUX Rank (Chrome User Experience Rank) is a metric from Google’s Chrome UX Report (CrUX) dataset that indicates a website’s popularity based on real user visits.
It reflects how frequently an origin (website) is loaded by Chrome users around the world.

A lower rank number means the site is more popular (e.g., rank 1 = top site).
The data is collected from anonymized Chrome usage statistics, aggregated monthly.
This rank helps you track site popularity trends and compare your domain’s visibility over time.

Nodes used in this workflow

Popular Google BigQuery and NocoDB workflows

Automate Monthly CrUX Report Transfer from BigQuery to NocoDB with Data Cleanup

Overview This n8n workflow automatically retrieves the monthly CrUX (Chrome User Experience) Report from Google BigQuery and updates the data in NocoDB. It removes the previous month’s data before inserting the new dataset, ensuring your database always contains the latest CrUX rankings for website origins. The flow is fully automated, using schedule triggers to handle both data cleanup and data insertion each month. ✅ Tasks ⏰ Runs automatically on a monthly schedule 🔢 Converts the month name to a numeric value for table selection 🧹 Deletes last month’s CrUX data from NocoDB 🌐 Queries Google BigQuery for the latest monthly dataset 💾 Inserts the new CrUX rankings into NocoDB ⚙️ Keeps your database up to date with zero manual effort 🛠 How to Use 1️⃣ Set Up BigQuery Access Connect your Google BigQuery credentials. Make sure your project includes access to the chrome-ux-report public dataset. 2️⃣ Adjust the Query In the Google BigQuery node, change the LIMIT value to control how many top-ranked sites are retrieved. Ensure the {{ $json.table }} field correctly references the dataset for the desired month (e.g., 202509). 3️⃣ Prepare NocoDB Table Create a table in NocoDB with fields: origin, crux_rank, and any additional metadata you wish to track. 4️⃣ Schedule Automation The workflow includes two Schedule Trigger nodes: One runs the data cleanup process (deletes last month). One runs the data insertion for the new month. 5️⃣ Run or Activate the Workflow Activate it to run automatically each month. You can also run it manually to refresh data on demand. 📋 Prerequisites Before running this workflow, make sure you complete the following setup steps: 🧱 Enable BigQuery API Go to Google Cloud Console → APIs & Services Enable the BigQuery API for your project. 📊 Access the Chrome UX Report Dataset In BigQuery, search for “Chrome UX Report” in the Marketplace or go directly to: https://console.cloud.google.com/marketplace/product/chrome-ux-report/chrome-ux-report Click “View Dataset” and add it to your BigQuery project. 🔑 Connect BigQuery to n8n In n8n, create credentials for your Google BigQuery account using Service Account Authentication. Ensure the account has permission to query the chrome-ux-report dataset. 🗄️ Create a NocoDB Table In NocoDB, create a new table to store your CrUX data with the following fields: origin → Short text crux_rank → Number ⚙️ Connect NocoDB to n8n Use your NocoDB API Token to connect and allow the workflow to read/write data. What is CrUX Rank? CrUX Rank (Chrome User Experience Rank) is a metric from Google’s Chrome UX Report (CrUX) dataset that indicates a website’s popularity based on real user visits. It reflects how frequently an origin (website) is loaded by Chrome users around the world. A lower rank number means the site is more popular (e.g., rank 1 = top site). The data is collected from anonymized Chrome usage statistics, aggregated monthly. This rank helps you track site popularity trends and compare your domain’s visibility over time.

Build your own Google BigQuery and NocoDB integration

Create custom Google BigQuery and NocoDB workflows by choosing triggers and actions. Nodes come with global operations and settings, as well as app-specific parameters that can be configured. You can also use the HTTP Request node to query data from any app or service with a REST API.

Google BigQuery supported actions

Execute Query
Execute a SQL query
Insert
Insert rows in a table

NocoDB supported actions

Create
Create a row
Delete
Delete a row
Get
Retrieve a row
Get Many
Retrieve many rows
Update
Update a row

FAQs

  • Can Google BigQuery connect with NocoDB?

  • Can I use Google BigQuery’s API with n8n?

  • Can I use NocoDB’s API with n8n?

  • Is n8n secure for integrating Google BigQuery and NocoDB?

  • How to get started with Google BigQuery and NocoDB integration in n8n.io?

Need help setting up your Google BigQuery and NocoDB integration?

Discover our latest community's recommendations and join the discussions about Google BigQuery and NocoDB integration.
Alex Kim
JOduMonT
Luc Berge

Looking to integrate Google BigQuery and NocoDB in your company?

Over 3000 companies switch to n8n every single week

Why use n8n to integrate Google BigQuery with NocoDB

Build complex workflows, really fast

Build complex workflows, really fast

Handle branching, merging and iteration easily.
Pause your workflow to wait for external events.

Code when you need it, UI when you don't

Simple debugging

Your data is displayed alongside your settings, making edge cases easy to track down.

Use templates to get started fast

Use 1000+ workflow templates available from our core team and our community.

Reuse your work

Copy and paste, easily import and export workflows.

Implement complex processes faster with n8n

red iconyellow iconred iconyellow icon