Feature/327 RSocket support#625
Feature/327 RSocket support#625Nokinori wants to merge 2 commits intographql-java-kickstart:masterfrom
Conversation
Merge from original repo
|
Thanks a lot for the effort and your contribution! Please note that we're on the verge of merging a major module restructure, see #617. This means your PR will have to be updated in line with that one. You could already rebase your branch on that The |
|
@oliemansm Thank you for answer! I see #617 was merged. So I continue my work on rsocket implementation and try to find a way of Apollo Client subscription protocol problem. |
Hi there!
I created a simple implementation for RSocket #327.
GraphQL query is supported by RSocket REQUEST-RESPONSE. Available on
graphqlendpoint.GraphQL subscription is supported by RSocket REQUEST-STREAM. Available on
subscriptionendpoint.Set up RSocket over WebSocket protocol by default on 7000 port.
But there is a question about subscription:
What about operations?
Do we really need to support it over RSocket? The start, end, error... frames are handled by RSocket native
Also here is code duplicate
MonoAutoConfiguration.java. I'll refactor it after discussion about this feature :)