Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamsoffer/next-apollo-example
Next & Apollo Example
https://github.com/adamsoffer/next-apollo-example
apollo graphql nextjs react
Last synced: about 19 hours ago
JSON representation
Next & Apollo Example
- Host: GitHub
- URL: https://github.com/adamsoffer/next-apollo-example
- Owner: adamsoffer
- Created: 2017-01-07T05:04:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T16:38:38.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T13:13:10.028Z (9 months ago)
- Topics: apollo, graphql, nextjs, react
- Language: JavaScript
- Homepage: https://next-with-apollo.vercel.app/
- Size: 2.51 MB
- Stars: 437
- Watchers: 12
- Forks: 63
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Next & Apollo Example [![Build Status](https://travis-ci.org/adamsoffer/next-apollo-example.svg?branch=master)](https://travis-ci.org/adamsoffer/next-apollo-example)
This example utilizes the [next-apollo](https://www.npmjs.com/package/next-apollo) package which is ideal if you want to tuck away some of the ceremony involved when using Apollo in your Next.js app. It also features my preferred CSS-in-JS solution, [Emotion](https://emotion.sh/).
[Demo](https://next-with-apollo.vercel.app/)
## How to use
Install it and run
```bash
npm install
npm run dev
```Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download))
```bash
now
```## The idea behind the example
Apollo is a GraphQL client that allows you to easily query the exact data you need from a GraphQL server. In addition to fetching and mutating data, Apollo analyzes your queries and their results to construct a client-side cache of your data, which is kept up to date as further queries and mutations are run, fetching more results from the server.
In this simple example, we integrate Apollo seamlessly with Next by wrapping our _pages_ inside a [higher-order component (HOC)](https://facebook.github.io/react/docs/higher-order-components.html). Using the 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`, we invoke the Apollo method, [`getDataFromTree`](http://dev.apollodata.com/react/server-side-rendering.html#getDataFromTree). This method returns a promise; at the point in which the promise resolves, our Apollo Client store is completely initialized.
This example relies on [Prisma + Nexus](https://github.com/prisma-labs/nextjs-graphql-api-examples) for its GraphQL backend.