23.0.0 • Published 3 years ago

@keystone-next/keystone-legacy v23.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Keystone class

Usage

const { Keystone } = require('@keystone-next/keystone-legacy');

const keystone = new Keystone({
  adapter,
  defaultAccess,
  onConnect,
  queryLimits,
  schemaNames,
});

secure

A secure cookie is only sent to the server with an encrypted request over the HTTPS protocol. If secure is set to true (as is the default with a production build) for a KeystoneJS project running on a non-HTTPS server (such as localhost), you will not be able to log in. In that case, be sure you set secure to false. This does not affect development builds since this value is already false.

You can read more about secure cookies on the MDN web docs.

Usage

const keystone = new Keystone({
  /* ...config */
  cookie: {
    secure: process.env.NODE_ENV === 'production', // Default to true in production
    maxAge: 1000 * 60 * 60 * 24 * 30, // 30 days
    sameSite: false,
  },
});

defaultAccess

Default:

{
  list: true,
  field: true,
  custom: true
}

Default list and field access. See the Access Control page for more details.

onConnect

Default: undefined

Callback function that executes once keystone.connect() is complete. Takes no arguments.

queryLimits

Configures global query limits.

These should be used together with list query limits.

const keystone = new Keystone({
  queryLimits: {
    maxTotalResults: 1000,
  },
});
  • maxTotalResults: limit of the total results of all relationship subqueries

Note that maxTotalResults applies to the total results of all relationship queries separately, even if some are nested inside others.

schemaNames

Default: ['public']

Methods

MethodDescription
connectManually connect to Adapter.
createListAdd a list to the Keystone schema.
disconnectDisconnect from the adapter.
prepareManually prepare Keystone middlewares.
createContextCreate a context object that can be used with context.graphql.raw().

connect()

Manually connect Keystone to the adapter. See Custom Server.

keystone.connect();

Note: keystone.connect() is only required for custom servers. Most example projects use the keystone start command to start a server and automatically connect.

createList(listKey, config)

Registers a new list with Keystone and returns a Keystone list object. See:

keystone.createList('Posts', {...});

Config

OptionTypeDefaultDescription
listKeyStringnullThe name of the list. This should be singular, E.g. 'User' not 'Users'.
configObject{}The list config. See the create list API docs for more details.

disconnect()

Disconnect the adapter.

Config

OptionTypeDescription
typesarrayA list of objects of the form { type, access } where the type string defines a GraphQL type.
queriesarrayA list of objects of the form { schema, resolver, access }.
mutationsarrayA list of objects of the form { schema, resolver, access }.
  • The schema for both queries and mutations should be a string defining the GraphQL schema element for the query/mutation, e.g.
{
  schema: 'getBestPosts(author: ID!): [Post]',
}
  • The resolver for both queries and mutations should be a resolver function with following signature:
{
  resolver: (parent, args, context, info, extra) => {},
}

For more information about the first four arguments, please see the Apollo docs. The last argument extra is an object that contains the following property:

NameDescription
accessAccess control information about the current user.
  • The access argument for types, queries, and mutations are all either boolean values which are used at schema generation time to include or exclude the item from the schema, or a function which must return boolean.
  • See the Access control API docs for more details.

Config

OptionTypedefaultDescription
appsArray[]An array of 'Apps' which are express middleware.
corsObject{ origin: true, credentials: true }CORS options passed to the cors npm module
devBooleanfalseSets the dev flag in Keystone' express middleware.
distDirStringdistThe build directory for keystone.
pinoOptionsObjectundefinedLogging options passed to the express-pino-logger npm module

createContext({ schemaName, authentication, skipAccessControl })

Create a context object that can be used with context.graphql.raw().

Usage

const { gql } = require('apollo-server-express');

// Create a context which can execute GraphQL operations with no access control
const context = keystone.createContext().sudo()

// Execute a GraphQL operation with no access control
const { data, errors } = await context.graphql.raw({ context, query: gql` ... `, variables: { ... }})

Config

OptionTypedefaultDescription
schemaNameStringpublicThe name of the GraphQL schema to execute against.
authenticationObject{}{ item: { id }, listAuthKey: "" }. Specifies the item to be used in access control checks.
skipAccessControlBooleanfalseSet to true to skip all access control checks.

Usage

const { gql } = require('apollo-server-express');

// Create a context which can execute GraphQL operations with no access control
const context = keystone.createContext().sudo()

// Execute a GraphQL operation with no access control
const { data, errors } = await context.graphql.raw({ query: gql` ... `, variables: { ... }})

Config

OptionTypedefaultDescription
contextArraykeystone.createContext()A context object to be used by the GraphQL resolvers.
queryObjectundefinedThe GraphQL operation to execute.
variablesObjectundefinedThe variables to be passed to the GraphQL operation.