
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
@gridsome/source-airtable
Advanced tools
Airtable source for Gridsome.
yarn add @gridsome/source-airtable
npm install @gridsome/source-airtable
module.exports = {
plugins: [
{
use: '@gridsome/source-airtable',
options: {
apiKey: 'YOUR_API_KEY', // required
base: 'YOUR_BASE_ID', // required
tables: [
{
name: 'YOUR_TABLE_NAME', // required
typeName: 'YOUR_TYPE_NAME', // required
select: {}, // optional,
links: [ // optional
{
fieldName: 'Case Sensitive Field Name',
typeName: 'TYPE_NAME_FROM_LINKED_TABLE',
linkToFirst: false // optional
}
]
},
{
name: 'YOUR_LINKED_TABLE_NAME', // required
typeName: 'YOUR_LINKED_TYPE_NAME', // required
}
],
tableName: 'YOUR_TABLE_NAME', // required
},
},
],
templates: {
YOUR_TYPE_NAME: 'YOUR_OPTIONAL_ROUTE', // optional
},
}
apiKey
: This can be found when logged in to airtable.com, under "ACCOUNT > API"base
: This can be found by going to https://airtable.com/api, clicking on your workspace, and will be visible in the url: https://airtable.com/{YOUR_BASE_ID}/api/docs#curl/introductiontables
: This is where you configure one or more tables that should be loaded as a data source
name
: This is the full name of your chosen workspace table, for example "Furniture" is the first and main table in the pre-defined workspace named "Product Catalog & Orders"typeName
: Your chosen type name. The type name "Product" is an example of an fitting route for the pre-defined airtable workspace named "Product Catalog & Orders"select
: Your select options. These can be found by going to https://airtable.com/api, clicking on your workspace, and will be visible under the List records of your tablelinks
: When links to another record are set in airtable, they need to be also mapped so we can return them as a sub-object
fieldName
: This is the case sensitive full name of the field that has been set as a "Link to another record type"typeName
: This is the type name of the linked table that has been added to the "tables" configlinkToFirst
: Airtable always returns linked records as an array of records, but there is sometimes a case when you have only one record linked. This is the convenient option that will extract the first record from array and return an object. It emulates the "one to one" relation from RDBMSFAQs
Airtable source for Gridsome
We found that @gridsome/source-airtable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.