const { Text, Relationship, Integer } = require('@keystonejs/fields'); const { AutoIncrement } = require('@keystonejs/fields-auto-increment'); module.exports = { fields: { id: { type: Integer, isRequired: true, label: 'productfeatures' }, features_id: { type: Relationship, ref: 'features', many: false, label: 'features' }, featuresval_id: { type: Relationship, ref: 'featuresval', many: false, label: 'featuresval' }, article_id: { type: Relationship, ref: 'items', many: false, label: 'article' }, custom_value: { type: Text, label: 'custom_value' }, }, label: 'Productfeature'//, plural: 'Productfeaturess' };