Just curious, how have you managed to used this wi...
# graphql-kotlin
g
Just curious, how have you managed to used this with legacy (such as spring MVC without webflux) servers? I'm assuming you could only do this by using graphql-java or by creating a new server which uses the legacy server as a service
d
Our spring server library is built using spring webflux
If you are using spring mvc then you'll have to re-implement server logic yourself
(ie recreate the top level /graphql endpoint and beans necessary for query processing)
Its the same as if you were to use other web framework (eg ktor)
g
Ah thanks