ash_graphql/test/support/other_domain.ex
Riccardo Binetti 31d29e178f
improvement: deduplicate map types across domains (#164)
Allow having common NewType maps that are used in multiple domains and are
correctly deduplicated
2024-05-23 12:11:28 -04:00

16 lines
326 B
Elixir

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