
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
gatsby-theme-whatsgood-fork-apollo
Advanced tools
A Gatsby theme that sets up your website for use with Apollo Client.
This theme is meant to be used with the @apollo/client package. If you aren't already using it, make sure you install it along with this theme.
Important:
@apollo/clientis currently in beta. If you want to use this theme withapollo-boostorapollo-client, you can installgatsby-theme-whatsgood-fork-apollo@2.
npm install gatsby-theme-whatsgood-fork-apollo @apollo/client
Add gatsby-theme-whatsgood-fork-apollo as a plugin in your Gatsby config.
// gatsby-config.js
module.exports = {
plugins: ['gatsby-theme-whatsgood-fork-apollo']
};
Required: Shadow this theme's client.js file with your own ApolloClient instance. Check out the Apollo docs to learn more about creating a client.
However you decide to create your client, you should make sure that:
fetch implementation (such as isomorphic-fetch) as an option to HttpLinkclient.js// src/gatsby-theme-whatsgood-fork-apollo/client.js
import fetch from 'isomorphic-fetch';
import {ApolloClient, HttpLink, InMemoryCache} from '@apollo/client';
const client = new ApolloClient({
cache: new InMemoryCache(),
link: new HttpLink({
uri: 'https://api.spacex.land/graphql/',
fetch
})
});
export default client;
FAQs
Sets up your Gatsby website for use with Apollo
We found that gatsby-theme-whatsgood-fork-apollo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.