-
Notifications
You must be signed in to change notification settings - Fork 1
Support multipart responses or event streams #1
Comments
Upstream issue: sveltejs/kit#1563 |
Any updates about this ? |
See the linked issue, which has been very active recently. |
Yeah I have been checking it, but to be honest I'm not familiar about streaming. |
It's up to there being an accepted resolution and implementation in SvelteKit core, but then I would need help updating this tool to make use of it—I don't personally know how GraphQL subscriptions or multipart responses work so I don't know how to implement or test them. |
@babichjacob we will try to implement it when they accepted and merge it. |
Is this project still alive? I would like to help with this issue. |
graphql-helix
's README shows an example for Express(-like) servers. We meet it 1:1 until theelse if (result.type === "MULTIPART_RESPONSE") {
point.In SvelteKit's Node adapter, the underlying server is actually made from the
http
library in Node, and we don't have access to the server in endpoints.So, everything that can be returned needs to be returned all together.
Can we do anything to condense a multipart response or event stream?
The text was updated successfully, but these errors were encountered: