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

DateTimeUtc

DateTimeUtc fields represent points in time.

Accepts only values that include an offset, explicitly or implicitly (as in JS Date objects). Produces JS Date objects and ISO 8601 strings.

Unlike the DateTime field type only the UTC value is stored.

Usage

JS
const { DateTimeUtc } = require('@keystonejs/fields');

keystone.createList('User', {
  fields: {
    lastOnline: { type: DateTimeUtc },
  },
});

On this page

  • Usage
Edit on GitHub