ash_graphql/test/support/api.ex
Zach Daniel 2422440da7
test: Added a test case to managed_relationship with a many_to_many resource (#22)
fix: fix compiler warning

Co-authored-by: Simon Bergström <simon.bergstrom@erlang-solutions.com>
2021-05-11 19:35:50 -04:00

13 lines
273 B
Elixir

defmodule AshGraphql.Test.Api do
@moduledoc false
use Ash.Api
resources do
resource(AshGraphql.Test.Comment)
resource(AshGraphql.Test.Post)
resource(AshGraphql.Test.PostTag)
resource(AshGraphql.Test.Tag)
resource(AshGraphql.Test.User)
end
end