You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to graphql-transport-ws messages with type complete should contain an id of a subscription.
I'm using this library with a server written in different language and for every such message I'm getting a response "Missing map member: 'id'" - which I believe is justified.
IMO when closing graphql-transport-ws connection only active subscriptions should be closed but no additional messages should be sent.
The text was updated successfully, but these errors were encountered:
Web socket handler for recently implemented
graphql-transport-ws
protocol sends invalid message type when closing connection:https://github.com/graphql-dotnet/graphql-client/blob/master/src/GraphQL.Client/Websocket/GraphQLTransportWSProtocolHandler.cs#L269
which results in message:
According to graphql-transport-ws messages with type
complete
should contain anid
of a subscription.I'm using this library with a server written in different language and for every such message I'm getting a response
"Missing map member: 'id'"
- which I believe is justified.IMO when closing
graphql-transport-ws
connection only active subscriptions should be closed but no additional messages should be sent.The text was updated successfully, but these errors were encountered: