From f303a0f521d77339331c8da262e8ea1100eea231 Mon Sep 17 00:00:00 2001 From: Jozef Knaperek Date: Wed, 7 Jun 2023 13:33:17 +0200 Subject: [PATCH] Clarified docs on bulk_create return value --- docs/ref/models/querysets.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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