Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
next-apollo
Advanced tools
React higher-order component for using the Apollo GraphQL client inside Next.js
A package for using Apollo within a Next.js application.
This project assumes you have react, react-dom, and next installed. They're specified as peerDependencies.
npm install --save next-apollo graphql @apollo/client
Create an Apollo Client, pass it into to the withApollo
higher-order component and export the returned component.
import { withApollo } from "next-apollo";
import { ApolloClient, InMemoryCache } from "@apollo/client";
const apolloClient = new ApolloClient({
uri: "https://api.graph.cool/simple/v1/cixmkt2ul01q00122mksg82pn",
cache: new InMemoryCache(),
});
export default withApollo(apolloClient);
Inside your Next.js page, wrap your component with your exported higher order component.
import withApollo from "../lib/apollo";
const Page = (props) => <div>Hello World</div>;
// Default export is required for Fast Refresh
export default withApollo({ ssr: true })(Page);
That's it!
Next-apollo integrates Apollo seamlessly with Next by wrapping our pages inside a higher-order component (HOC). Using a HOC pattern we're able to pass down a central store of query result data created by Apollo into our React component hierarchy defined inside each page of our Next application.
On initial page load, while on the server and inside getInitialProps
, the Apollo method, getDataFromTree
, is invoked and returns a promise; at the point in which the promise resolves, our Apollo Client store is completely initialized.
MIT
FAQs
React higher-order component for using the Apollo GraphQL client inside Next.js
We found that next-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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.