zf

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

boolean.ex (506B)


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