Skip to content
KeystoneJS LogoKeystoneJS
👋🏻 Keystone 5 has officially moved to maintenance only. For the latest release of Keystone please visit the Keystone website.

Integer

A whole number.

Usage

JS
const { Integer, Text } = require('@keystonejs/fields');

keystone.createList('Review', {
  fields: {
    comments: { type: Text },
    rating: { type: Integer },
  },
});

Config

OptionTypeDefaultDescription
isRequiredBooleanfalseDoes this field require a value?
isUniqueBooleanfalseAdds a unique index that allows only unique values to be stored

On this page

  • Usage
  • Config
Edit on GitHub