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
{{ message }}
This repository has been archived by the owner on Aug 27, 2020. It is now read-only.
Server sends this message upon a failing operation, before the GraphQL execution, usually due to GraphQL validation errors (resolver errors are part of GQL_DATA message, and will be added as errors array)
Even though, it is said that
graphyne-ws
follows GraphQL over WebSocket Protocol, we have several differences:GQL_ERROR
graphyne-ws
sends this asGQL_DATA
instead ofGQL_ERROR
. However, weird enough, evensubscriptions-transports-ws
implementation does the same: https://github.com/apollographql/subscriptions-transport-ws/blob/master/src/server.ts#L350-L354 -- and does not follow the section of the protocol either.I will need to look into some GraphQL client implementation to see how it handles
GQL_ERROR
.The only times
graphyne-ws
sendsGQL_ERROR
are:This issue will be updated if there is any additional deviations.
The text was updated successfully, but these errors were encountered: