Airtable GraphQL
Quickly deploy a GraphQL API for an airtable base in just a few lines of code.
const AirtableGraphQL = ;api = "airtable_api_key";api;
Setup
npm install airtable-graphql --save
Pull your airtable schema by running the airtable-graphql pull
command in the root folder of your project.
$ airtable-graphql pull --email=[your_email] --password=[your_password] --base=[base_id]
This will create a schema.json
file which describes all of your bases tables and columns.
Create a file called index.js
and add the following.
const AirtableGraphQL = ;api = "airtable_api_key";api;
Run node index.js
That's it!