This project demonstrates usage of different limits you can add to your GraphQL schema in Keystone.
To run this project, clone the Keystone repository locally, run pnpm
at the root of this repository, then navigate to this directory and run:
pnpm dev
This will start the Admin UI at localhost:3000. You can use the Admin UI to create items in your database.
You can also access a GraphQL Playground at localhost:3000/api/graphql, which allows you to directly run GraphQL queries and mutations.
Congratulations, you're now up and running with Keystone! 🚀
This example includes sample data. To add it to your database:
- Ensure you’ve initialised your project with
pnpm dev
at least once. - Run
pnpm seed-data
. This will populate your database with sample content. - Run
pnpm dev
again to startup Admin UI with sample data in place.
You can play with this example online in a web browser using the free codesandbox.io service. To launch this example, open the URL https://githubbox.com/keystonejs/keystone/tree/main/examples/limits. You can also fork this sandbox to make your own changes.
Experiment with the code in this example to see how Keystone works, familiarise yourself with the Admin UI, and learn about the GraphQL Playground.
When you’ve got the hang of this base project, try a feature project to learn Keystone’s advanced features and take your knowledge to the next level.