Gatsby source plugin for building websites using the Firestore as a data source.
- Get a private key for your Firebase project.
- Put that private key somewhere in your Gatsby project.
- $ yarn add gatsby-source-firestore
- Configure gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-firestore',
      options: {
        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),
            }),
          },
        ],
      },
    },
  ],
};- To query
{
  allBooks {
    edges {
      node {
        title
        isbn
        author {
          name
        }
      }
    }
  }
}| Key | Description | 
|---|---|
| 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 namedbookandallBook | 
| 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 ___NODEto link between nodes | 
This project is created solely to suit our requirements, no maintenance/warranty are provided. Feel free to send in pull requests.