Replies: 1 comment
-
Its part of GraphQL spec that its impossible to make infinite query. You need to specify depth explicitly: query {
files {
name
children {
name
children {
name
children {
name
}
}
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I want to do recursive model like this, but is this the right way t do it? also, I am using ariadne graphql, so i should make specific schema.graphql not sure how to do that yet.
my schema
Beta Was this translation helpful? Give feedback.
All reactions