Schema API
The lists property of the system configuration object is where you define the data model, or schema, of your Keystone system.
To setup the lists property of the system configuration you need to use the createSchema() function.
This function accepts an object with list names as keys, and list() configurations as values.
import { config, createSchema, list } from '@keystone-next/keystone/schema';export default config({lists: createSchema({ListName: list({fields: { /* ... */ },idField: { /* ... */ },access: { /* ... */ },ui: { /* ... */ },hooks: { /* ... */ },graphql: { /* ... */ },db: { /* ... */ },description: '...',}),/* ... */}),/* ... */});
This document will explain the configuration options which can be used with the list() function.
fields
The fields option defines the names, types, and configuration of the fields in the list.
This configuration option takes an object with field names as keys, and configured field types as values.
import { config, createSchema, list } from '@keystone-next/keystone/schema';import { text } from '@keystone-next/fields';export default config({lists: createSchema({ListName: list({fields: {fieldName: text({ /* ... */ }),/* ... */},}),/* ... */}),/* ... */});
For full details on the available field types and their configuration options please see the Fields API.
idField
The idField option lets you override the default ID field used by Keystone.
By default the prisma_postgresql and knex adapters use autoincrement, and mongoose uses mongoId, as an ID field type.
The default configuration (e.g. when idField: undefined ) is equivalent to:
import { config, createSchema, list } from '@keystone-next/keystone/schema';import { autoincrement, mongoId } from '@keystone-next/fields';export default config({lists: createSchema({ListName: list({fields: { /* ... */ },// prisma_postgresql and knex adaptersidField: autoincrement({ui: {createView: { fieldMode: 'hidden' },itemView: { fieldMode: 'hidden' },},}),// mongoose adapteridField: mongoId({ui: {createView: { fieldMode: 'hidden' },itemView: { fieldMode: 'hidden' },},}),/* ... */}),/* ... */}),/* ... */});
These defaults hide this field in the create and update views in the Admin UI.
You can override these defaults, or any other field config options, by providing a field type configured as needed.
The idField will always be made available in the GraphQL API with a name of id.
access
The access option defines the Access Control rules for the list.
These rules determine which of the CRUD (create, read, update, delete) operations users are allowed to perform.
See the Access Control API for full details on the available access control options.
ui
The ui option controls how the list is displayed and interacted with in the Admin UI.
Options:
labelField: Selects the field which will be used as the label column in the Admin UI. By default looks for a field called'label', then falls back to'name', then'title', and finally'id', which is guaranteed to exist.description(default:undefined): Sets the list description displayed in the Admin UI.isHidden(default:false): Controls whether the list is visible in the navigation elements of the Admin UI. Can be either a boolean value, or an async function with an argument{ session }that returns a boolean value.hideCreate(default:false): Controls whether thecreatebutton is available in the Admin UI for this list. Can be either a boolean value, or an async function with an argument{ session }that returns a boolean value.hideDelete(default:false): Controls whether thedeletebutton is available in the Admin UI for this list. Can be either a boolean value, or an async function with an argument{ session }that returns a boolean value.listView: Controls the list view page of the Admin UI.defaultFieldMode(default:'read'): Controls the default mode of fields in the list view. Can be overriden by per-field values in thefield.ui.listView.fieldModeconfig. See the Fields API for details. Can be one of['read', 'hidden'], or an async function with an argument{ session }that returns one of['read', 'hidden'].initialColumns(default:[labelField]). A list of field names to display in columns in the list view. By default only the label column, as determined bylabelField, is shown.initialSort(default:undefined): Sets the field and direction to be used to initially sort the data in the list view. Optionfieldis the name of the field to sort by, anddirectionis either'ASC'or'DESC'for ascending and descending sorting respectively. If undefined then data will be unsorted.pageSize(default:50): Sets the number of items to show per page in the list view.
createView: Controls the create view page of the Admin UI.defaultFieldMode(default:'edit'): Can be overriden by per-field values in thefield.ui.createView.fieldModeconfig. See the Fields API for details. Can be one of['edit', 'hidden'], or an async function with an argument{ session }that returns one of['edit', 'hidden'].
itemView: Controls the item view page of the Admin UI.defaultFieldMode(default:'edit'): Can be overriden by per-field values in thefield.ui.itemView.fieldModeconfig. See the Fields API for details. Can be one of['edit', 'read', 'hidden'], or an async function with an argument{ session }that returns one of['edit', 'read', 'hidden'].
import { config, createSchema, list } from '@keystone-next/keystone/schema';import { text } from '@keystone-next/fields`;export default config({lists: createSchema({ListName: list({fields: { name: text({ /* ... */ }) },ui: {labelField: 'name',description: '...',isHidden: ({ session }) => false,hideCreate: ({ session }) => false,hideDelete: ({ session }) => false,listView: {defaultFieldMode: ({ session }) => 'read',initialColumns: ['name', /* ... */],initialSort: { field: 'name', direction: 'ASC' },pageSize: 50,},createView: {defaultFieldMode: ({ session }) => 'edit',},itemView: {defaultFieldMode: ({ session, item }) => 'edit',},},}),/* ... */}),/* ... */});
hooks
The hooks option defines hook functions for the list.
Hooks allow you to execute code at different stages of the mutation lifecycle.
See the Hooks API for full details on the available hook options.
graphql
The graphql config option allows you to configures certain aspects of the GraphQL API.
Options:
description(default:undefined): Sets the description of the associated GraphQL type in the generated GraphQL API documentation. Overrides the list-leveldescriptionconfig option.itemQueryName(default: List key, e.g'User'): Overrides the name used in singular mutations and queries (e.g.User,updateUser, etc).listQueryName: (default: Pluralised list key, e.g.'Users'): Overrides the name used in multiple mutations and queries (e.g.allUsers,updateUsers, etc).queryLimits(default:undefined): Allows you to limit the number of results returned from a query to this list in the GraphQL API. See also the globalgraphql.queryLimitsoption in the System Configuration API.
import { config, createSchema, list } from '@keystone-next/keystone/schema';export default config({lists: createSchema({ListName: list({graphql: {description: '...',itemQueryName: '...',listQueryName: '...',queryLimits: { maxResults: 100 },},/* ... */}),/* ... */}),/* ... */});
db
The db config option allows you to configures certain aspects of the database connection specific to this list.
Options:
searchField(default:"name"): The name of the field to use when performingsearchfilters in the GraphQL API.
import { config, createSchema, list } from '@keystone-next/keystone/schema';export default config({lists: createSchema({ListName: list({db: {searchField: 'email',},/* ... */}),/* ... */}),/* ... */});
description
The description option defines a string which will be used as a description in the Admin UI and GraphQL API docs.
This option can be individually overriden by the graphql.description or ui.description options.