#elixir Changing from this: ```elixir # in your subscription socket use Absinthe.Phoenix.Socket, schema: MyApp.Schema # in your router forward("/", Absinthe.Plug, schema: MyApp.Schema, ... ) ``` to this ```elixir # in your subscription socket use Absinthe.Phoenix.Socket, schema: Module.concat(["MyApp.Schema"]) # in your router forward("/", Absinthe.Plug, schema: Module.concat(["MyApp.Schema"]), ... ) ``` Eliminates a whole spiderweb of compile time dependencies! Frustrating, but it works.