I have simple feathers hook as given here.
const syncPackageChannel = async (context) => {
const { _id } = context.data;
console.log(_id)
return context;
};
Here, It logs the _id undefined. What is the way to access the id of the model just created in the afterSave hook?