Current section

Files

Jump to
absinthe_graphql_ws lib absinthe graphql_ws message connection_ack.ex
Raw

lib/absinthe/graphql_ws/message/connection_ack.ex

defmodule Absinthe.GraphqlWS.Message.ConnectionAck do
@moduledoc """
Must be sent in response to a ConnectionInit message from the client.
"""
alias Absinthe.GraphqlWS.Util
def new(payload \\ %{}) do
Util.json_library().encode!(%{type: "connection_ack", payload: payload})
end
end