ConnectionAck

@Serializable
@SerialName(value = "connection_ack")
data class ConnectionAck(val type: String = "connection_ack", val payload: JsonObject? = null) : GraphQLWebSocketMessage

Server → Client: Connection acknowledged.

Server accepts connection init. Client can now send subscriptions.

Constructors

Link copied to clipboard
constructor(type: String = "connection_ack", payload: JsonObject? = null)

Properties

Link copied to clipboard
val payload: JsonObject? = null
Link copied to clipboard
open override val type: String