GraphQL deeply nested relations

I see

https://github.com/drizzle-team/drizzle-graphql/releases/tag/0.7.0

has a depth limit of 2 (and 2nd does not have relations). Is there anyway to make the second have relations / have depth limit of 3 maybe...

I am doing a query

# get all the users that contributed to funding a quest
query Quest {
    quest(where: { id: { eq: "xyz" } }) {
        holdco { # account
            incoming { # transaction
                id
                origin { # account
                    user { # want to access but DNE

                    }
                }
            }
        }
    }
}


but user is not resolving 🥲 particularly because of the depth limit of 2
GitHub
Added deep relations

❓ : How deep?
For each branch of table's relations, they are generated until the same table gets used twice. Upon second hit, table will still be generated, but will have ...
Was this page helpful?