Content Fragment reference missing from the Graphql response when called recursively In the headless approach that we are following for our website, we are working only with Content Fragments.That said, Content Fragments are behaving like the actual pages.We are facing a scenario in which our Page level Content Fragment(A) contains a header(H). Header(H) consists of navigation links to our primary pages (A,B,C ---all of which are Fragment references).As we can see, one of the navigation links in the Header(H) consists of the same Page level Content Fragment(A) from which it is being called.In such a scenario, when we query the Page level Content Fragment(A) for the underlying navigation links in the header(H), we see that the response consisting of the navigation links doesn't contain the calling Page level fragment reference(A). query GetPageByPath($path: String!){ pageByPath(_path: $path){ item{ header{ navigationLinks{ ... on PageModel{