Quarkus support? #1773
-
Hi, Does graphql-kotlin support running on Quarkus? I know that Quarkus has support for smallrye-graphql but graphql-kotlin seems to be based on graphql-java. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello 👋 Thanks, side note: |
Beta Was this translation helpful? Give feedback.
Hello 👋
graphql-kotlin
comes with built-in support for reactive Spring Boot (autoconfiguration module) and Ktor (plugin) webservers. You can use schema generation module with any other webserver (including Quarkus) but you will have to implement the server logic yourself (i.e. handling of the HTTP requests, wiring up your schema etc).Thanks,
Derek
side note:
smallrye-graphql
(similarly asgraphql-kotlin
) is also an abstraction overgraphql-java