Fetching Linked content

I've tried to fetch linked contents but got this error.
"You cannot go deeper than 3 levels of documents."
Can you solve this?

await client.getByUID("link_list", "header-left", {
    graphQuery: `{
      link_list{
      ...link_listFields
      links{
      ...linksFields
      item{
      ...itemFields
      dropdown{
      ...dropdownFields
      items{
      ...itemsFields
      }
      testitems{
      ...testitemsFields
      item{
      ...itemFields
      }
      }
      }
      }
      }
      }
      }`
  });

Hey @max2,

That is expected behavior: you cannot go deeper than three levels.

Sam