Community Plugin
View plugin on GitHubgatsby-source-firestores
Gatsby source plugin for building websites using multiple Firebase Firestores as a data source. Supports subcollections.
Usage
- Get a private key for each Firebase project.
- Put the private keys somewhere in your Gatsby project.
$ npm i gatsby-source-firestores
- Configure
gatsby-config.js
module.exports = {
plugins: [
{
resolve: 'gatsby-source-firestores',
options: {
bases: [
{
name: 'books',
credential: require('./books.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
),
}),
},
],
},
{
name: 'blog',
credential: require('./blog.firebase.json'),
types: [
{
type: 'Post',
collection: 'posts',
map: (doc) => ({
title: doc.title,
user___NODE: doc.user.id,
}),
},
{
type: 'User',
collection: 'users',
map: (doc) => ({
name: doc.name,
email: user.email,
posts___NODE: doc.posts.map(
(post) => post.id
),
}),
},
],
},
],
},
},
],
};
- To query
{
allBook {
edges {
node {
title
isbn
author {
name
}
}
}
}
allPost {
edges {
node {
title
user {
name
}
}
}
}
}
Support for subcollections
To query subcollections, you have to specify the subCollection Array in the types configuration.
They can be nested infinitely deep as long as they exist in Firestore. For example, if books
were
a subcollection of authors
in Firestore, you could do the following:
module.exports = {
plugins: [
{
resolve: 'gatsby-source-firestores',
options: {
bases: [
{
name: 'books',
credential: require('./books.firebase.json'),
types: [
{
type: `Author`,
collection: `authors`,
map: (doc) => ({
name: doc.name,
country: doc.country,
}),
subCollections: [
{
type: `Book`,
collection: `books`,
map: (doc) => ({
title: doc.title,
isbn: doc.isbn,
}),
},
],
},
],
},
],
},
},
],
};
books
now become children of author
and you can query them like this:
{
allAuthor {
edges {
node {
name
childrenBook {
title
isbn
}
}
}
}
}
Configurations
Key | Description |
---|---|
bases | Array of databases, which require name, credential and types keys |
name | Arbitrary name for a given database |
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 |
subCollections | Optional: Array of subcollection types for the current type. See types |
Disclaimer
This project is created solely to suit our requirements, no maintenance/warranty are provided. Feel free to send in pull requests.