zf

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

hydrator.ex (234B)


      1 defmodule Absinthe.Schema.Hydrator do
      2   @type hydration :: any
      3 
      4   @callback apply_hydration(
      5               node :: Absinthe.Blueprint.Schema.t(),
      6               hydration :: hydration
      7             ) :: Absinthe.Blueprint.Schema.t()
      8 end