Files
payloadcms/test/array-update/config.ts
2022-07-17 08:20:01 -07:00

27 lines
474 B
TypeScript

import { buildConfig } from '../buildConfig';
export default buildConfig({
collections: [
{
slug: 'arrays',
fields: [
{
name: 'array',
type: 'array',
fields: [
{
type: 'text',
name: 'required',
required: true,
},
{
type: 'text',
name: 'optional',
},
],
},
],
},
],
});