I’m experiencing an issue when updating a document that contains a relationship_field. Specifically, when I attempt to add multiple relationships to the array, only the first item is successfully linked, while the others remain empty.
TL;DR
Bug in updating a document with a relationship field - when adding multiple relationships, only the first one links successfully while others stay empty.
Solution: Instead of passing an array of relationship IDs, try passing a dictionary with each ID mapped to its own key. For example: `data={"cctv_images_incoming": {"id1": True, "id2": True}}`.