New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gatsby-source-google-reviews

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

gatsby-source-google-reviews

Gatsby source plugin to add Google Reviews.

0.0.2
unpublished
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

gatsby-source-google-reviews

npm i gatsby-source-google-reviews
yarn add gatsby-source-google-reviews

Want to show your Google reviews in your Gatsby application? Then this is the package for you.

Install this package, and add 'gatsby-source-google-reviews' to your plugins array in gatsby-config.js as shown below:

plugins: [
  {
    resolve: `gatsby-source-google-reviews`,
    options: {
      placeId: `placeid`,
    },
  },
]

You can find your place id here. Simply input the business or location name and Google will do the rest.

Once you have added the environment variable above, you can run gatsby develop. Proceed to the GraphQL interface e.g. localhost:3000/___graphql.

You can then run the following query to fetch all your Google reviews.

{
  GoogleReview {
    edges {
      node {
        id
        author
        content
        score
        createdAt
      }
    }
  }
}

Keywords

gatsby

FAQs

Package last updated on 14 Mar 2020

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