Code Monkey home page Code Monkey logo

gatsby-source-firestore's People

Contributors

alvinthen avatar baymose avatar cbejensen avatar franatique avatar itwasmattgregg avatar pierre-b avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

gatsby-source-firestore's Issues

Issue w/ auto Generated IDs

The Error

Error: Names must match /^[_a-zA-Z][_a-zA-Z0-9]*$/ but "3hWjFg8z7faY" doesnt.

GraphQL does not like nodes that start with numbers. The library you based this off of has a way of doing it but could you just prepend a string "id" when you create the nodes.

here is how the other library attacks it

        // This allows you to map your data to data that GraphQL likes:
        // 1. Turn your lists into actual arrays
        // 2. Fix keys that GraphQL hates. It doesn't allow number keys
        //    like "0", you'll get this error pretty often:
        //    Error: Names must match /^[_a-zA-Z][_a-zA-Z0-9]*$/ but "0" does not
        // 3. Remove stuff you don't need.
        //
        // Feel free to mutate, we sent you a copy anyway.
        map: node => {
          // fix keys graphql hates
          node.nineteenEightyFive = node['1985']
          delete node['1985']

          // convert a child list to an array:
          return node.sessions = Object.keys(node.sessions).map(key => {
            return { _key: key, session: node.sessions[key] }
          })

          // finally, return the node
          return node
        },
      },

Sample with firestore db screenshot

I try to use your demo on my firestore DB but I did not understand the mapping

My firestore base:

collections | document |
books > > author: 'fred'
title: 'my book'

My mapping file

types: [
  {
    type: 'Book',
    collection: 'books',
    map: doc => ({
      title: doc.title,
      author: doc.author
    }),
  },
],

graphQl browser returns

{
  allBook {
    edges {
      node {
        id
      }
    }
  }
}

graphQL does not return title and author

AdminSDK private

Would the firebase.json (containing adminSDK) not get pushed into build and therefore publicly accessible in my front end?

I thought if it got imported it goes into the end result. Also, are there any working examples of this? Not just snippets without context.

Gatsby build fails if firebase auth fails

If Firebase auth fails, the plugin should handle this in order to not break the gatsby build.
This is desired when working on a gatsby project and having no data source at hand.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.