Updated to use @apollo/client.
Keystone can be used as a data engine in Next.js applications without having to host a separate Keystone server. This is made possible by Keystone's getContext
API.
- CRUD data within your Next.js server: You can use Keystone data APIs directly in Next.js
getStaticProps
orgetServerSideProps
to CRUD data. ⚡️ - CRUD data from browser: You can use the generated Keystone GraphQL schema to setup your own GraphQL server in a Next.js route. This enables you to send GraphQL requests from the browser. 🤯 (refer to /pages/api/graphql.ts for implementation details)
- You don't have to start the Keystone server at all.
Note: Since you are not starting the keystone server, the Admin UI will not be available. You can host Keystone as a separate server if you need Admin UI.
- This example is setup with seed data. Demo user email is
[email protected]
, password ispassw0rd
. yarn next:dev
is all you need to develop your Next.js app. You don't need to start the keystone server sincegetContext
will work without starting the Keystone server.- However when you make changes to your keystone lists, the schema files need to be regenerated. So you'll either have to run
yarn keystone:dev
oryarn keystone:build
just once after making changes to your lists. Alternatively you can open two terminal tabs and run bothyarn keystone:dev
andyarn next:dev
concurrently during development. - When you deploy your Next.js app, remember to run
yarn keystone:build
once to make sure you have the latest schema files built forgetContext
API.
Admin UI needs the Keystone server to run. Your Next.js app runs on a Next.js server. Keystone's Admin UI runs on Keystone server. You can't have two servers running in a Next.js production environment. Since we are not starting the Keystone server in production builds, we won't have access to Keystone's Admin UI. You can access it in local (use the command yarn keystone:dev
) because you can easily start two servers in your local but once you deploy your Next.js app you won't have access to the Admin UI.
Easy. Deploy twice to two different servers.
- Deploy your Next.js app to one instance (Eg. Vercel).
- Deploy the Keystone server (commands in package.json) to another instance (Eg. Digital Ocean).
Both these apps connect to the same database and are built with the same source code so everything will work as you expect it to.
Deploy this example to Vercel and see it for yourself.