zf

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

compiled.ex (884B)


      1 defmodule Absinthe.Schema.Compiled do
      2   @moduledoc false
      3 
      4   @behaviour Absinthe.Schema.Provider
      5 
      6   def pipeline(pipeline) do
      7     pipeline
      8   end
      9 
     10   def __absinthe_type__(schema_mod, name) do
     11     Module.concat([schema_mod, Compiled]).__absinthe_type__(name)
     12   end
     13 
     14   def __absinthe_directive__(schema_mod, name) do
     15     Module.concat([schema_mod, Compiled]).__absinthe_directive__(name)
     16   end
     17 
     18   def __absinthe_types__(schema_mod) do
     19     Module.concat([schema_mod, Compiled]).__absinthe_types__
     20   end
     21 
     22   def __absinthe_types__(schema_mod, group) do
     23     Module.concat([schema_mod, Compiled]).__absinthe_types__(group)
     24   end
     25 
     26   def __absinthe_directives__(schema_mod) do
     27     Module.concat([schema_mod, Compiled]).__absinthe_directives__
     28   end
     29 
     30   def __absinthe_interface_implementors__(schema_mod) do
     31     Module.concat([schema_mod, Compiled]).__absinthe_interface_implementors__
     32   end
     33 end