Hello !!

I have a little problem to build a view like I want. I don't know if it's really possible. I searched a lot on the web but don't find any solution so I explain my problem here.

I have a first content type called "product". Next I have 3 others content-types called "Link", "Video" and "Album". These 3 content-types have each a "node reference" field to store the "product" reference. For each of these content-types, the field is different (field_link_reference, field_video_reference, field_album_reference). The goal is to link the product with some Links, Videos and pictures Albums.

Example : Product A is linked with

  • Link F, G and H,
  • Video I and J,
  • Album X, Y and Z.

Now I would like to create a view to list all content linked to a product.
An argument is passed to the view, corresponding to the "product nid", and the view must list titles of F-G-H Links, I-J Videos and X-Y-Z albums. I tried some different approaches but no one worked for me.

I easily retrieve only one content type listing by used the field_xyz_reference as argument, but I don't see how to retrieve multiples content-types by using only one argument (maybe with relationships but I don't know how to achieve it...)

If anyone has suggestions it would be nice.

Thanks in advance for any help.