22 lines
366 B
JavaScript
22 lines
366 B
JavaScript
module.exports = {
|
|
slug: 'relationship-b',
|
|
access: {
|
|
read: () => true,
|
|
},
|
|
labels: {
|
|
singular: 'Relationship B',
|
|
plural: 'Relationship B',
|
|
},
|
|
fields: [
|
|
{
|
|
name: 'post',
|
|
label: 'Post',
|
|
type: 'relationship',
|
|
relationTo: 'relationship-a',
|
|
localized: false,
|
|
hasMany: true,
|
|
},
|
|
],
|
|
timestamps: true,
|
|
};
|