I'm trying to make a "related articles" for a "blog-article" single based off the relation "blog-categories", but I can't seem to get the relations to appear in the api call. What's the API url with the correct parameters to get relations with Strapi?
To populate all of the articles in descending order by date with images, I'm doing:
const res =
await fetch (
https://localhost:3000/api/blog-articles?populate=*&sort[0]=publishDate%3Adesc
)
Edit: Fetch result Edit 2: Schema
blog-articles&blog-categorieswhich are related withmany-to-manyrelation. What do you need in your response of fetch API? What do you mean by 'I'm trying to make a "related articles" for a "blog-article" single based off the relation "blog-categories"?'