const { Text, Checkbox, Relationship } = require('@keystonejs/fields'); const { AutoIncrement } = require('@keystonejs/fields-auto-increment'); module.exports = { fields: { locations_id: { type: AutoIncrement, isRequired: true, label: 'Lokalizacja' }, symbol: { type: Text, isRequired: true, label: 'Symbol' }, name: { type: Text, label: 'Nazwa' }, shops_id: { type: Relationship, ref: 'shops', many: true, isRequired: true, label: 'Magazyn' }, defloc: { type: Checkbox, label: 'defloc' }, }, label: 'Location'//, plural: 'Locationss' };