andrew
andrew
Explore posts from servers
DTDrizzle Team
Created by andrew on 3/29/2025 in #help
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

}
}
}
}
}
}
# 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
1 replies
DTDrizzle Team
Created by andrew on 3/19/2025 in #help
Generic `select`
No description
4 replies
DCDistant Cats
Created by andrew on 7/2/2024 in #help-me
LOD file format
Is there documentation for the LOD file format? I am trying to implement it and just loking thru code right now.
5 replies
DCDistant Cats
Created by andrew on 7/2/2024 in #help-me
Custom server any idea what is happening weird chunks
No description
24 replies
DCDistant Cats
Created by andrew on 7/1/2024 in #help-me
server side DH protocol
is there a spec for the DH protocol? Or the LOD format? Trying to impl my own custom mc server https://github.com/andrewgazelka/hyperion
2 replies