zf

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

identifier.ex (281B)


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