9.0.5 • Published 4 years ago

@koikorn/fields v9.0.5

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

Fields

Keystone contains a set of primitive fields types that can be imported from @koikorn/fields. These include:

In addition to these are some other complex types that have their own package such as Markdown and Wysiwyg.

Tip: Need more? See our guide on custom field types

Usage

Fields definitions are provided when creating a list. Field definitions should be an object where the key is the field name and the value is an object containing the fields config:

const { Text } = require('@koikorn/fields');

keystone.createList('Post', {
  fields: {
    title: { type: Text },
  },
});

Config

Fields share some standard configuration options.

OptionTypeDefaultDescription
typeFieldType(required)
adminDocStringfalseA description for the field used in the AdminUI.
schemaDocStringfalseA description for the field used in the GraphQL schema.
defaultValueAny | FunctionundefinedA valid default value for the field type. Functions must return a valid value. Use undefined to set no default, and null to set an empty default.
isUniqueBooleanfalseWhether or not the field should be unique.
isRequiredBooleanfalseWhether or not the field should be mandatory.
accessBoolean | Function | ObjecttrueSee: Access control options for fields.
labelStringLabel for the field.
adminConfigObject{}Additional config which can be used when customizing admin-ui

Note: Many field types have additional config options. See the documentation for individual field types for more detail.

type

A valid Keystone field type.

label

Sets the label for the field in the AdminUI

adminDoc

A description of the field used in the AdminUI.

schemaDoc

A description of the field used used in the GraphQL schema.

defaultValue

Sets the value when no data is provided.

keystone.createList('Post', {
  fields: {
    title: {
      type: Text,
      defaultValue: ({ context, originalInput, actions }) => {
        /**/
      },
    },
    description: { type: Text, defaultValue: 'Lorem ipsum...' },
  },
});

For a 'nullable' field, set defaultValue: null.

The defaultValue can be a String or Function. Functions should returns the value, or a Promise for the value.

isUnique

Specifies whether the value should be unique or not. Will return an error is a user tries to create a field with a non-unique value.

isRequired

Specifies whether the field is required or not. Will return an error if mutations do not contain data.

access

Access control options for fields.

Options for create, read, update and delete - can be a function or Boolean. See the access control API documentation for more details.

Note: Field level access control does not accept graphQL where clauses.

cacheHint

HTTP cache hint for field.

Only static hints are supported for fields.

Native type aliases

Keystone allows the use of a few native JavaScript types for fields. They are converted to their Keystone field equivalents at runtime.

Native typeField type equivalent
BooleanCheckbox
NumberFloat
StringText

Usage

keystone.createList('Post', {
  fields: {
    title: {
      type: String,
    }
  }
}