diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 0118cf4e5b..00a8451744 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2416,7 +2416,8 @@ exists in the database, an :exc:`~django.db.IntegrityError` is raised. This method inserts the provided list of objects into the database in an efficient manner (generally only 1 query, no matter how many objects there -are), and returns created objects as a list, in the same order as provided: +are), and returns all provided objects as a list in the same order. +If ``ignore_conflics`` is set, the conflicted objects will be included as well. .. code-block:: pycon