zf

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

null.ex (435B)


      1 defmodule Absinthe.Blueprint.Input.Null do
      2   @moduledoc false
      3 
      4   alias Absinthe.{Blueprint, Phase}
      5 
      6   defstruct [
      7     :source_location,
      8     # Added by phases
      9     flags: %{},
     10     schema_node: nil,
     11     errors: []
     12   ]
     13 
     14   @type t :: %__MODULE__{
     15           flags: Blueprint.flags_t(),
     16           schema_node: nil | Absinthe.Type.t(),
     17           source_location: Blueprint.SourceLocation.t(),
     18           errors: [Phase.Error.t()]
     19         }
     20 end