ash_graphql/config/config.exs
Zach Daniel 1bea680af3 feat: change type name generation for managed relationships.
The current type name generation could result in clashes.
We now show a warning explaining how to fix these.
2023-03-21 21:17:53 -04:00

23 lines
790 B
Elixir

import Config
config :ash, :utc_datetime_type, :datetime
config :ash, :disable_async?, true
config :ash_graphql, :default_managed_relationship_type_name_template, :action_name
if Mix.env() == :dev do
config :git_ops,
mix_project: AshGraphql.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_graphql",
# Instructs the tool to manage your mix version in your `mix.exs` file
# See below for more information
manage_mix_version?: true,
# Instructs the tool to manage the version in your README.md
# Pass in `true` to use `"README.md"` or a string to customize
manage_readme_version: [
"README.md",
"documentation/tutorials/getting-started-with-graphql.md"
],
version_tag_prefix: "v"
end