I am using Drupal 7. I created a view that uses 8 different (chained) relationships to access a specific entity type. Then, the view displays some fields of this entity type. The view has some filter criteria as well (making sure the fields of the entity type are not deleted), and a Contextual filter on the logged-in user's ID.
The first relationship of that view takes the user ID and makes available a "person" entity with this ID. Then, for example, this person entity has a (second) relationship to their employer, and the employer has a (third) relationship to all the "Cases" they have. I want to access these Case entities in the view, and display some of their attributes (fields).
Now my problem is that all of the views I created this way only give back one result (Case) each. Specifically, they return only the fields of the "first" Case entity (Case entity with the lowest Case ID) that meets the given filter criteria.
I tried to remove some of the relationships from the view, to check if a list of entities is reduced to its first item somewhere along the way through the relationships. The problem already appears in the first relationship that is supposed to output multiple values. I didn't find any helpful resources.
How can I include all the results?
I also appreciate hints for better search words for this problem.