Is each websocket connection only expected to have one connection
at a time
#158
-
Hey there, I'm a bit confused on the concept of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The WS connection and You cannot have 2 connections within a single socket the same way you cannot have 2 sockets within one socket. |
Beta Was this translation helpful? Give feedback.
The WS connection and
graphql-ws
connection are synonymous, the only difference is that agraphql-ws
connection is an acknowledged connection (through theconneciton_ack
message) within a WS socket. Check theNomenclature
section in the Protocol.You cannot have 2 connections within a single socket the same way you cannot have 2 sockets within one socket.