zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

non_null.ex (310B)


      1 defmodule Absinthe.Blueprint.TypeReference.NonNull do
      2   @moduledoc false
      3 
      4   alias Absinthe.{Blueprint, Phase}
      5 
      6   @enforce_keys [:of_type]
      7   defstruct [
      8     :of_type,
      9     errors: []
     10   ]
     11 
     12   @type t :: %__MODULE__{
     13           of_type: Blueprint.TypeReference.t(),
     14           errors: [Phase.Error.t()]
     15         }
     16 end