| 12345678910 |
- const { Uuid, Relationship, Integer } = require('@keystonejs/fields');
- module.exports = {
- fields: {
- id: { type: Uuid, isRequired: true, label: 'docflow' },
- id1: { type: Uuid, isRequired: true, label: 'id1' },
- id2: { type: Uuid, isRequired: true, label: 'id2' },
- shops_id: { type: Relationship, ref: 'shops', many: false, label: 'Magazyn' },
- }//, label: 'Docflow'//, plural: 'Docflows'
- };
|