
Security News
Node.js Moves Toward Stable TypeScript Support with Amaro 1.0
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
@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
The npm package @gridsome/source-airtable receives a total of 182 weekly downloads. As such, @gridsome/source-airtable popularity was classified as not popular.
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.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.