In the https://docs.bullmq.io/guide/queues/adding-bulks it says "there could be a requirement that all the jobs must be placed in the queue or none of them", however the code to add jobs in bulk (https://github.com/taskforcesh/bullmq/blob/master/src/classes/job.ts#L301) uses the "client.pipeline()" not "client.multi()". I thought pipeline command means all commands are executed regardless of failure of some commands. Which means some jobs will be created even if some of them failed to create. Please correct me if i am wrong.