airtable-graphql

1.0.9 • Public • Published

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!

/airtable-graphql/

    Package Sidebar

    Install

    npm i airtable-graphql

    Weekly Downloads

    3

    Version

    1.0.9

    License

    MIT

    Unpacked Size

    13.4 kB

    Total Files

    17

    Last publish

    Collaborators

    • thomascullen