keystone icon indicating copy to clipboard operation
keystone copied to clipboard

The most powerful headless CMS for Node.js — built with GraphQL and React

Results 298 keystone issues
Sort by recently updated
recently updated
newest added

When running `keystone build` via npm scripts with `NODE_ENV` set to "production", I get the following error: ```shell Error: unexpected call to getAdminMetaInRelationshipField at Object.getAdminMetaForRelationshipField (/Users/tony/project-x/src/api/node_modules/@keystone-6/core/dist/create-admin-meta-5d6c7c4d.cjs.prod.js:152:11) at Object.getAdminMeta (/Users/tony/project-x/src/api/node_modules/@keystone-6/core/fields/dist/keystone-6-core-fields.cjs.prod.js:2882:45) at...

🐛 bug

https://github.com/keystonejs/keystone/blob/60357b76c6eac1c3727b8cb77059e8d7908b92aa/packages/auth/src/index.ts#L173 I had a user with ID===0 where the field was autoincrement. Can we support this use case? This check should either be `"itemId" in session` or `!session.itemId && session.itemId...

🐛 bug

### Steps 1. Have schema with `User` and `Post` lists 2. `Post.user` is in relationship with `User.posts` 3. Open Admin 4. Create new `User` item by filling form and pressing...

## Repro Steps 1. create a model with a `timestamp` field (no options passed) 2. go to admin panel and navigate to that model 3. create one item and set...

Summary _VSCode_ devcontainer.json specifies Node v14 but Node >=16.14 required for pnpm ### Repro 1. Install VScode, Docker Desktop 2. Clone keystonejs repo 3. Open repo in VSCode 4. Re-open...

in the readme.md file [here](https://github.com/keystonejs/keystone/tree/main/examples/custom-admin-ui-logo) it seems that the code sandbox [example](https://githubbox.com/keystonejs/keystone/tree/main/examples/custom-admin-ui-logo) is broken due to the following error: ``` ✨ Starting Keystone ✘ [ERROR] Could not resolve "../example-utils" keystone.ts:2:30:...

To reproduce, create the following schema: ```ts export const lists: Lists = { testfield: list({ access: allowAll, db: { idField: { kind: 'autoincrement', type: 'Int', }, }, fields: {}, }),...

🐛 bug

Link to transform params in type info. I found this while digging around the source after adding Cloudinary images to my project. I can add more copy around this subject...

These tests were disabled in https://github.com/keystonejs/keystone/pull/8304 as jest was exploding with a `Segmentation Fault`, this should help resolve that.