I have implemented Bull queue in nestjs project but want producer to be a laravel project. I use following command to produce
Redis::command('zadd', ['bull:test:delayed', 1, $data]); 
and at consumer use
@Processor('test')
export class ConsumerProcessor {
  @Process({concurrency:13})
  handle(j: Job<unknown>) {
    this.logger.log(j.id);
  }
}
The $data added at producer is accessible via job.id, how can I access it using job.data and have a unique id? What changes needs to be done at producer side?
                        
Below code works: