For example, I have two models:
class Person(models.Model):
    name = models.CharField(max_length=100)
class Job(models.Model):
    title = models.CharField(max_length=100)
    person = models.ForeignKey(Person)
I have a list of job ids--
job_ids = [1, 2, ....] 
that are pks of Job model instances
I know I can do--
for id in job_ids:
    person.jobs.add(job_id)
but this will be many more queries than if I could do--
person.jobs.add(job_ids)
where it would unpack the list and use bulk_create. How do I do this? Thanks.
 
     
    