Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gatsby-source-parse

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-source-parse

Gatsby source plugin for building websites using a Parse.it server as a data source

  • 1.5.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gatsby-source-parse

npm version

Gatsby source plugin for building websites using Parse as a data source

Usage

  1. Add gatsby-source-parse as a dependency by running using npm or yarn:

    npm i gatsby-source-parse
    # or
    yarn add gatsby-source-parse
    
  2. Configure settings at gatsby-config.js, for example (please note that parseConfig settings are only placeholder/dummy values):

    module.exports = {
      plugins: [
        {
          resolve: `gatsby-source-parse`,
          options: {
            parseConfig: {
              apiKey: 'api-key',
              appId: 'my-parse-app-id',
              jsKey: 'my-parse-app-js-key',
              serverURL: 'https://myserveraddress.com/parse',
            },
            types: [
              {
                type: `Book`,
                map: doc => ({
                  title: doc.title,
                  isbn: doc.isbn,
                }),
              },
              {
                type: `Author`,
                map: doc => ({
                  name: doc.name,
                  country: doc.country,
                }),
              },
            ],
          },
        },
      ],
    };
    

    Note that you will need to have books and authors in Parse matching this schema before Gatsby can query correctly.

  3. Test GraphQL query:

    {
      allBooks {
        edges {
          node {
            title
            isbn
            author {
              name
            }
          }
        }
      }
    }
    

Configurations

KeyDescription
appConfigParse credentials generated on parse server configuration.
typesArray of types, which require the following keys (type, collection, map)
types.typeThe type of the collection, which will be used in GraphQL queries, e.g. when type = Book, the GraphQL types are named book and allBook
types.collectionThe name of the collections in Parse. Nested collections are not tested
types.mapA function to map your data in Parse to Gatsby nodes, utilize the undocumented ___NODE to link between nodes

Disclaimer

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

Acknowledgement

Keywords

FAQs

Package last updated on 25 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc