zf

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

document.ex (452B)


      1 defmodule Absinthe.Blueprint.Document do
      2   @moduledoc false
      3   alias Absinthe.Blueprint
      4 
      5   @type t ::
      6           Blueprint.Document.Field.t()
      7           | Blueprint.Document.Fragment.t()
      8           | Blueprint.Document.Operation.t()
      9           | Blueprint.Document.VariableDefinition.t()
     10 
     11   @type selection_t ::
     12           Blueprint.Document.Field.t()
     13           | Blueprint.Document.Fragment.Inline.t()
     14           | Blueprint.Document.Fragment.Spread.t()
     15 end