keystone
keystone copied to clipboard
The most powerful headless CMS for Node.js — built with GraphQL and React
### Steps to reproduce Follow the docs link to create a project: [How to embed Keystone + SQLite in a Next.js app](https://keystonejs.com/docs/walkthroughs/embedded-mode-with-sqlite-nextjs). ### Expected result It builds just fine, dynamic...
### Please add steps to reproduce the problem 1. Create a list with document field 2. Create other list and add relationship field to list1 with ui.displayMode: "cards" 3. Create...
I'm trying to write some GQL to create some posts for my test Keystone install, and I'm unsure what I'm doing wrong in relation to the document field. I'm getting...
The yarn create keystone-app does not work with username which have spaces in windows environment.
1. Just have username which have spaces in windows platform 2. Install yarn using node for that user 3. Then run `yarn create keystone-app` and it will fail I expected...
When placing a long piece of text without any newlines in any document field element inside of the admin ui the text does not wrap or scroll inside the document...
Created three schema items (Parent, Child, Grandchild) - as below, And inserted them into the overall keystone schema. ``` import { list } from "@keystone-6/core"; import { text, relationship }...
If I need to batch update data of certain list by some criteria, I need to create custom function to find IDs at first and then pass them to UpdateMany...
Sometimes we need to run some direct prisma queries on Lists, having a Keystone's List name. But because of [this prisma issue](https://github.com/prisma/prisma/issues/11260) we can't easily do this. So, in younger...
1) Run example blog 2) Create "author 1" 3) Create "author 2" 4) Create post 4.1) Create Related author "new author" 4.2) Change author to "author 1" 4.3) Open authors...
I've something like this: ``` import { setupTestRunner } from '@keystone-6/core/testing' import config from './keystone' const runner = setupTestRunner({ config }) test( 'Keystone test', runner(async ({ context }) => {...