const { Checkbox, DateTime, Text, Integer, Uuid, Relationship } = require('@keystonejs/fields'); module.exports = { fields: { stocktaking_id: { type: Uuid, isRequired: true, label: 'stocktaking' }, accepted: { type: Checkbox, isRequired: true, label: 'Zatwierdzono' }, date_o: { type: DateTime, label: 'date_o' }, name: { type: Text, label: 'Nazwa' }, posnumber: { type: Integer, label: 'posnumber' }, operators_id: { type: Relationship, ref: 'operators', many: true, isRequired: true, label: 'Uzytkownik' }, shops_id: { type: Relationship, ref: 'shops', many: true, isRequired: true, label: 'Magazyn' }, }, label: 'Stocktaking'//, plural: 'Stocktakings' };