Socket
Socket
Sign inDemoInstall

@jortizsao/gatsby-source-google-reviews

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jortizsao/gatsby-source-google-reviews

Gatsby source plugin to add Google Reviews.


Version published
Maintainers
1
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

FAQs

Package last updated on 20 Nov 2022

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