I have the following Media schema
module.exports = {
attributes: {
user: {
model: 'user',
required: true
},
jobs: {
collection: 'job',
via: 'media'
}
},
afterCreate: generateJob,
}
The method generateJob the media object is like that
{
user: '55dcd2db428f50ea1ecf670e'
}
But job field doesnt appear and I need it because I want to associate one job to media but media doesnt get the media.jobs.add() method.
Thanks