Current section

Files

Jump to
graphqexl lib graphqexl schema subscription.ex
Raw

lib/graphqexl/schema/subscription.ex

defmodule Graphqexl.Schema.Subscription do
@moduledoc """
GraphQL subscription
"""
defstruct name: "", fields: %{}
@type t :: %Graphqexl.Schema.Subscription{name: String.t(), fields: Map.t()}
end