I have a collection named “blog-articles” that has a many-to-many relation with the collection “blog-categories”.
How do I have the fetch api call populate the relations?
Current api call:
const res =
await fetch (
https://localhost:3000/api/blog-articles?populate=*&sort[0]=publishDate%3Adesc
)