Graphql kotlin in SpringBoot 3.X.X #1784
-
Hello, when trying to use this library within a SpringBoot project with version 3.X.X it is not possible to access the playground. Is it possible to use this library in a SpringBoot project with a 3.X.X version already? If not is there any plan to enable this soon? I really like this library and would love to use it further :) Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hello, Thanks, |
Beta Was this translation helpful? Give feedback.
-
Just to add to what @dariuszkuc mentioned, |
Beta Was this translation helpful? Give feedback.
Hello,
GraphQL Playground is not actively maintained (and haven't been in a while). With GraphQL Kotlin v7 we now enable GraphiQL (an official GraphQL IDE) by default (property
graphql.graphiql.enabled=true
) . You can still opt-in to using playground by specifyinggraphql.playground.enabled=true
in your configuration properties.Thanks,
Derek