ash_graphql/test/support/other_domain.ex

17 lines
326 B
Elixir
Raw Permalink Normal View History

defmodule AshGraphql.Test.OtherDomain do
@moduledoc false
# This domain and its resource serves the purpose of testing deduplication of
# common map types
use Ash.Domain,
extensions: [
AshGraphql.Domain
],
otp_app: :ash_graphql
resources do
resource(AshGraphql.Test.OtherResource)
end
end