ash_graphql/lib/graphql/api_middleware.ex

6 lines
153 B
Elixir
Raw Normal View History

defmodule AshGraphql.Graphql.ApiMiddleware do
def set_api(resolution, api) do
Map.update!(resolution, :context, &Map.put(&1, :api, api))
end
end