AEM GraphQL query returning empty values
Hi,
The relatedArticles field is returning an empty array or nulls, even though it is in the model.
below is my simple code i am trying to:
query {
contentFragmentByPath(_path: "/content/dam/articles/my-article") {
title
relatedArticles {
title
author
}
}
}
What might be the problem?