artamonovtech / gatsby-firesource

🔥 Gatsby source plugin for using Firestore data source

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gatsby-firesource npm version

Gatsby source plugin for building websites using Firestore as a data source.

Usage

  1. Get a private key for your Firebase project.
  2. Put that private key somewhere in your Gatsby project.
  3. $ npm i gatsby-firesource
  4. Configure gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: "gatsby-firesource",
      options: {
        emulator: false,
        host: "localhost:8080",
        credential: require("./firebase.json"),
        types: [
          {
            type: "Book",
            collection: "books",
            map: doc => ({
              title: doc.title,
              isbn: doc.isbn,
              author___NODE: doc.author.id
            })
          },
          {
            type: "Author",
            collection: "authors",
            map: doc => ({
              name: doc.name,
              country: doc.country,
              books___NODE: doc.books.map(book => book.id)
            })
          }
        ]
      }
    }
  ]
}
  1. To query
{
  allBooks {
    edges {
      node {
        title
        isbn
        author {
          name
        }
      }
    }
  }
}

Configurations

Key Description
emulator Optional boolean param for connect your app to the Cloud Firestore Emulator. Default value false
host Optional string param custom host for connect your app to the Cloud Firestore Emulator. Default value localhost:8080
credential Require your private key here
types Array of types, which require the following 3 keys
type The type of the collection, which will be used in GraphQL queries. Eg, when type = Book, the GraphQL types are named book and allBook
collection The name of the collections in Firestore. Nested collections are not tested.
map A function to map your data in Firestore to Gatsby nodes, utilize the undocumented ___NODE to link between nodes

Disclaimer

This project is created solely to suit our requirements, no maintenance/warranty are provided. Feel free to send in pull requests.

Acknowledgement

gatsby-source-firestore

About

🔥 Gatsby source plugin for using Firestore data source


Languages

Language:JavaScript 100.0%