I’m having the same problem. The only difference is that I’m calling strapi.service(‘api::publisher.publisher’).create({})
If I extend the create, I can see it being called, but only if I don’t uncomment super.create
‘use strict’;
const { create } = require(‘lodash’);
const { createCoreService } = require(’@strapi/strapi’).factories;
module.exports = createCoreService(‘api::publisher.publisher’, ({ strapi }) => ({
async create(params) {
console.log(“service create publisher”)
console.log(params)
//await super.create(params)
}
}));