generator-oda-api-simple
Version:
api-simple project genrator
23 lines (22 loc) • 382 B
text/typescript
export default {
name: 'StudentsGroup',
fields: {
name: {
identity: true,
},
subjects: {
indexed: true,
relation: {
belongsToMany: 'Subject#',
using: 'StudentsGroupSubject#',
opposite: 'groups',
},
},
students: {
indexed: true,
relation: {
hasMany: 'Student#group',
},
},
},
};