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 questquery Quest { quest(where: { id: { eq: "xyz" } }) { holdco { # account incoming { # transaction id origin { # account user { # want to access but DNE } } } } }}
# get all the users that contributed to funding a questquery Quest { quest(where: { id: { eq: "xyz" } }) { holdco { # account incoming { # transaction id origin { # account user { # want to access but DNE } } } } }}
but
user
user
is not resolving particularly because of the depth limit of 2
: 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 ...