Files
payload/test/array-update/config.ts
2022-07-15 12:51:43 -07:00

25 lines
427 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',
},
],
},
],
}],
});