Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

thomascullen/airtable-graphql

Repository files navigation

Deprecated

Unfortunately I don't have time to work on this project anymore and wont be making any further updates.

Airtable GraphQL

Quickly deploy a GraphQL API for an airtable base in just a few lines of code.

const AirtableGraphQL = require("airtable-graphql");
api = new AirtableGraphQL("airtable_api_key");
api.listen();

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 = require("airtable-graphql");
api = new AirtableGraphQL("airtable_api_key");
api.listen();

Run node index.js

That's it!

About

Deploy a GraphQL API for an Airtable base

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published