Unable to fetch Content Relationship for a reusable type

Hi, Im running into an issue where I am not able to fetch Content Relationship for a reusable type. Is this a common thing, or am I doing something wrong?

In the image bla is a singleton type and Landing_page is a reusable type. I have 2 landing_pages but nothing is returned. However for the singleton the data is returned..

This is how my custom type is setup:

Any help would be very much appreciated :pray:

Hey Jose, welcome to the forum!

This is really strange because the response is indeed retrieving the two existing documents that you mentioned but with no data.

I'm going to pass this to the dev team and they will review it as soon as possible. I'll keep you updated in this thread

Thanks

1 Like

Hey Jose, we took a look at your repository and re-ran the query and the problem was that no Landing Page documents were linked to any Navigation autos Custom types. If you run this query you'll see the types of docs linked to it.

{
  allNavigation_autos {
    edges {
      node {
        link{
          page_links{
           	__typename
          }
        }
      }
    }
  }
}

Here's the link to the docs that further explain how Content Relationship links work

If you have any questions about this or anything else, let us know
Thank you

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.