Replies: 1 comment
-
Hi !
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
Currently, I'm trying to use @defer and @stream on my current yoga graphql server.
I made it work, at least as a server feature using the @graphql-yoga/plugin-defer-stream plugin.
I tried to consume this graphql from apollo-client adding @defer and @stream directives.
The @defer directive works correctly. However, the @stream directive returns null instead of the real value which has been sent from the server. The response is correct, I think the issue is related to the apollo client implementation. I tried @stream from yoga server graphiql and it worked correclty.
I was wondering about what client I could use to take full advantage of @defer and @stream. Since it worked on graphiql, I tried to get the same client but they implement their own client on the library and it is not exposed as an independant library.
In summary, could someone give me some help about what client I could use to take advantage of my @defer and @stream directives (which are working correclty on the server side)?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions