allow to configure how a relation is suggested (autocompleted):
{
TheModel: {
schema: {
relation: {
type: 'OtherModel',
suggest: {
field: 'otherTitle', // on what field to look up
sortBy: '-otherField' // how to sort the suggestions
// title: {template: "erf: {{title}}"} // how to represent a suggested item
}
}
}
}
}
allow to configure how a relation is suggested (autocompleted):