@k6-contrib/fields-weight
v6.1.0
Published
Keystone 6 Weight Field Type
Downloads
4
Readme
Weight Field
import { weight } from '@k6-contrib/fields-weight';
import 'dotenv/config';
const Product = list({
fields: {
title: text({ validation: { isRequired: true } }),
content: text(),
weight: weight({}),
packageWeight: weight({}),
},
});