Hi all - I am struggling to find a solution for my API data. My design is that “Albums” have a one-to-many relationship with “songs”. In general, an Album can have many songs, but a song can be part of one Album only.
http://localhost:1337/api/albums?populate=* - gives me all Album data (incl. Album cover image etc) but song does not have data for song file, song image etc
http://localhost:1337/api/albums?populate[songs][populate]=* - gives me all the song data (like song file, cover image etc) but the Album does not show data like Album cover image etc
I am not able to display all the Album data and the Song data in one api. Can someone please help me?
Thanks
J