This repository was archived by the owner on Dec 19, 2023. It is now read-only.
voyager can not load while max query depth sets #691
Answered
by
setchy
SongHayoung
asked this question in
Q&A
-
I got some issues on using voyager and playground. Is there any problems on my properties? graphql:
servlet:
max-query-depth: 4 |
Beta Was this translation helpful? Give feedback.
Answered by
setchy
Jul 29, 2021
Replies: 2 comments
-
also this is my <dependency>
<groupId>com.graphql-java-kickstart</groupId>
<artifactId>graphql-spring-boot-starter</artifactId>
<version>${graphql-version}</version>
</dependency>
<dependency>
<groupId>com.graphql-java-kickstart</groupId>
<artifactId>playground-spring-boot-starter</artifactId>
<version>${graphql-version}</version>
</dependency>
<dependency>
<groupId>com.graphql-java-kickstart</groupId>
<artifactId>voyager-spring-boot-starter</artifactId>
<version>${graphql-version}</version>
</dependency> |
Beta Was this translation helpful? Give feedback.
0 replies
-
@SongHayoung - below is the introspection query GraphQL Voayger uses to render its UX As you can see - it definitely has a query depth larger than 4 😄. You'll have to consider how you use this depth limiting feature with/without GraphQL Voyager
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
setchy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@SongHayoung - below is the introspection query GraphQL Voayger uses to render its UX
As you can see - it definitely has a query depth larger than 4 😄. You'll have to consider how you use this depth limiting feature with/without GraphQL Voyager