ash_graphql/mix.exs

188 lines
5.5 KiB
Elixir
Raw Normal View History

2020-05-02 04:32:56 +12:00
defmodule AshGraphql.MixProject do
use Mix.Project
2020-08-14 10:55:34 +12:00
@description """
2024-05-02 07:59:26 +12:00
The extension for building GraphQL APIs with Ash
2020-08-14 10:55:34 +12:00
"""
2024-08-27 08:18:12 +12:00
@version "1.3.3"
2020-08-14 10:55:34 +12:00
2020-05-02 04:32:56 +12:00
def project do
[
app: :ash_graphql,
2020-08-14 10:55:34 +12:00
version: @version,
2021-01-22 17:16:10 +13:00
elixir: "~> 1.11",
2020-05-02 04:32:56 +12:00
start_permanent: Mix.env() == :prod,
2020-08-14 10:55:34 +12:00
package: package(),
aliases: aliases(),
deps: deps(),
2020-12-02 18:07:15 +13:00
elixirc_paths: elixirc_paths(Mix.env()),
2020-09-24 12:54:57 +12:00
dialyzer: [plt_add_apps: [:ash]],
2020-08-14 10:55:34 +12:00
docs: docs(),
description: @description,
source_url: "https://github.com/ash-project/ash_graphql",
homepage_url: "https://github.com/ash-project/ash_graphql"
]
end
2020-12-02 18:07:15 +13:00
defp elixirc_paths(:test) do
elixirc_paths(:dev) ++ ["test/support"]
end
defp elixirc_paths(_) do
["lib"]
end
2020-08-14 10:55:34 +12:00
defp docs do
[
2024-05-02 07:59:26 +12:00
main: "readme",
2020-08-14 10:55:34 +12:00
source_ref: "v#{@version}",
logo: "logos/small-logo.png",
extra_section: "GUIDES",
2023-10-03 01:35:53 +13:00
before_closing_head_tag: fn type ->
if type == :html do
"""
<script>
if (location.hostname === "hexdocs.pm") {
var script = document.createElement("script");
script.src = "https://plausible.io/js/script.js";
script.setAttribute("defer", "defer")
script.setAttribute("data-domain", "ashhexdocs")
document.head.appendChild(script);
}
</script>
2023-10-03 01:35:53 +13:00
"""
end
end,
2024-01-13 08:53:43 +13:00
extras: [
2024-05-02 07:59:26 +12:00
{"README.md", title: "Home"},
2024-01-13 08:53:43 +13:00
"documentation/tutorials/getting-started-with-graphql.md",
2024-05-02 07:59:26 +12:00
"documentation/topics/authorize-with-graphql.md",
"documentation/topics/handle-errors.md",
"documentation/topics/sdl-file.md",
2024-05-02 07:59:26 +12:00
"documentation/topics/use-enums-with-graphql.md",
"documentation/topics/use-json-with-graphql.md",
"documentation/topics/use-subscriptions-with-graphql.md",
"documentation/topics/use-unions-with-graphql.md",
"documentation/topics/use-maps-with-graphql.md",
2024-01-13 08:53:43 +13:00
"documentation/topics/monitoring.md",
"documentation/topics/graphql-generation.md",
"documentation/topics/modifying-the-resolution.md",
"documentation/topics/relay.md",
2024-05-02 07:59:26 +12:00
"documentation/topics/upgrade.md",
improvement!: port AshGraphql to Ash 3.0 (#123) Step 1: update Ash Step 2: mass rename Api to Domain Step 3: Ash.Query.expr -> Ash.Expr.expr Also change ref interpolation Step 4: remove all warnings Step 5: remove registries from tests Step 6: fix filter Step 7: private? -> !public? Step 8: Ash.Calculation -> Ash.Resource.Calculation Step 9: use depend_on_resources/1 -> resources/1 Step 10: add Domain to all resources Step 11: use Ash module for all actions Step 12: add public? true all around Step 13: remove verbose? from options passed during Domain calls Step 14: add simple_sat Step 15: Ash.ErrorKind is no more, so remove code from errors Step 16: sprinkle default_accept :* around tests Step 17: replace Ash.Changeset.new/2 with Ash.Changeset.for_* Step 18: calculation fixups - Context is now a struct and arguments go under the arguments key - Function based calculations receive a list of records - Add a select to query-based loads - select -> load Step 19: pass the correct name to pass the policy in tests Step 20: Ash.Query.new/2 is no more Step 21: add AshGraphql.Resource.embedded? utility function Use that instead of Ash.Type.embedded_type?(resource_or_type) since resources are not types anymore Step 22: handle struct + instance_of: Resource in unions Resources are not type anymore so they need to be passed this way in unions Step 23: ensure we only check GraphQL actions for pagination All reads are now paginated by default, so this triggered a compilation error Step 24: swap arguments for sort on calculations Step 25: remove unused debug? option
2024-04-02 07:03:06 +13:00
"documentation/dsls/DSL:-AshGraphql.Domain.md",
2024-05-09 10:51:36 +12:00
"documentation/dsls/DSL:-AshGraphql.Resource.md",
"CHANGELOG.md"
2024-01-13 08:53:43 +13:00
],
groups_for_extras: [
Tutorials: ~r'documentation/tutorials',
"How To": ~r'documentation/how_to',
Topics: ~r'documentation/topics',
2024-05-09 10:51:36 +12:00
DSLs: ~r'documentation/dsls',
"About AshGraphql": [
"CHANGELOG.md"
]
2024-01-13 08:53:43 +13:00
],
groups_for_modules: [
2023-02-09 16:59:20 +13:00
AshGraphql: [
AshGraphql
],
Introspection: [
AshGraphql.Resource.Info,
improvement!: port AshGraphql to Ash 3.0 (#123) Step 1: update Ash Step 2: mass rename Api to Domain Step 3: Ash.Query.expr -> Ash.Expr.expr Also change ref interpolation Step 4: remove all warnings Step 5: remove registries from tests Step 6: fix filter Step 7: private? -> !public? Step 8: Ash.Calculation -> Ash.Resource.Calculation Step 9: use depend_on_resources/1 -> resources/1 Step 10: add Domain to all resources Step 11: use Ash module for all actions Step 12: add public? true all around Step 13: remove verbose? from options passed during Domain calls Step 14: add simple_sat Step 15: Ash.ErrorKind is no more, so remove code from errors Step 16: sprinkle default_accept :* around tests Step 17: replace Ash.Changeset.new/2 with Ash.Changeset.for_* Step 18: calculation fixups - Context is now a struct and arguments go under the arguments key - Function based calculations receive a list of records - Add a select to query-based loads - select -> load Step 19: pass the correct name to pass the policy in tests Step 20: Ash.Query.new/2 is no more Step 21: add AshGraphql.Resource.embedded? utility function Use that instead of Ash.Type.embedded_type?(resource_or_type) since resources are not types anymore Step 22: handle struct + instance_of: Resource in unions Resources are not type anymore so they need to be passed this way in unions Step 23: ensure we only check GraphQL actions for pagination All reads are now paginated by default, so this triggered a compilation error Step 24: swap arguments for sort on calculations Step 25: remove unused debug? option
2024-04-02 07:03:06 +13:00
AshGraphql.Domain.Info,
AshGraphql.Resource,
improvement!: port AshGraphql to Ash 3.0 (#123) Step 1: update Ash Step 2: mass rename Api to Domain Step 3: Ash.Query.expr -> Ash.Expr.expr Also change ref interpolation Step 4: remove all warnings Step 5: remove registries from tests Step 6: fix filter Step 7: private? -> !public? Step 8: Ash.Calculation -> Ash.Resource.Calculation Step 9: use depend_on_resources/1 -> resources/1 Step 10: add Domain to all resources Step 11: use Ash module for all actions Step 12: add public? true all around Step 13: remove verbose? from options passed during Domain calls Step 14: add simple_sat Step 15: Ash.ErrorKind is no more, so remove code from errors Step 16: sprinkle default_accept :* around tests Step 17: replace Ash.Changeset.new/2 with Ash.Changeset.for_* Step 18: calculation fixups - Context is now a struct and arguments go under the arguments key - Function based calculations receive a list of records - Add a select to query-based loads - select -> load Step 19: pass the correct name to pass the policy in tests Step 20: Ash.Query.new/2 is no more Step 21: add AshGraphql.Resource.embedded? utility function Use that instead of Ash.Type.embedded_type?(resource_or_type) since resources are not types anymore Step 22: handle struct + instance_of: Resource in unions Resources are not type anymore so they need to be passed this way in unions Step 23: ensure we only check GraphQL actions for pagination All reads are now paginated by default, so this triggered a compilation error Step 24: swap arguments for sort on calculations Step 25: remove unused debug? option
2024-04-02 07:03:06 +13:00
AshGraphql.Domain,
AshGraphql.Resource.Action,
AshGraphql.Resource.ManagedRelationship,
AshGraphql.Resource.Mutation,
AshGraphql.Resource.Query
],
Errors: [
AshGraphql.Error,
AshGraphql.Errors
],
Miscellaneous: [
AshGraphql.Resource.Helpers
],
2024-01-13 08:34:15 +13:00
Utilities: [
AshGraphql.ContextHelpers,
AshGraphql.DefaultErrorHandler,
AshGraphql.Plug,
AshGraphql.Subscription,
AshGraphql.Type,
AshGraphql.Types.JSON,
AshGraphql.Types.JSONString
]
]
2020-08-14 10:55:34 +12:00
]
end
defp package do
[
name: :ash_graphql,
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG* documentation),
2020-08-14 10:55:34 +12:00
links: %{
GitHub: "https://github.com/ash-project/ash_graphql"
}
2020-05-02 04:32:56 +12:00
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ash, ash_version("~> 3.0 and >= 3.2.3")},
2020-12-01 12:17:00 +13:00
{:absinthe_plug, "~> 1.4"},
2022-04-27 03:35:09 +12:00
{:absinthe, "~> 1.7"},
2020-08-14 09:39:59 +12:00
{:jason, "~> 1.2"},
{:igniter, "~> 0.3"},
{:spark, "~> 2.2 and >= 2.2.10"},
# dev/test dependencies
{:ex_doc, github: "elixir-lang/ex_doc", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.12", only: [:dev, :test]},
2023-02-01 17:54:39 +13:00
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:git_ops, "~> 2.5", only: [:dev, :test]},
improvement!: port AshGraphql to Ash 3.0 (#123) Step 1: update Ash Step 2: mass rename Api to Domain Step 3: Ash.Query.expr -> Ash.Expr.expr Also change ref interpolation Step 4: remove all warnings Step 5: remove registries from tests Step 6: fix filter Step 7: private? -> !public? Step 8: Ash.Calculation -> Ash.Resource.Calculation Step 9: use depend_on_resources/1 -> resources/1 Step 10: add Domain to all resources Step 11: use Ash module for all actions Step 12: add public? true all around Step 13: remove verbose? from options passed during Domain calls Step 14: add simple_sat Step 15: Ash.ErrorKind is no more, so remove code from errors Step 16: sprinkle default_accept :* around tests Step 17: replace Ash.Changeset.new/2 with Ash.Changeset.for_* Step 18: calculation fixups - Context is now a struct and arguments go under the arguments key - Function based calculations receive a list of records - Add a select to query-based loads - select -> load Step 19: pass the correct name to pass the policy in tests Step 20: Ash.Query.new/2 is no more Step 21: add AshGraphql.Resource.embedded? utility function Use that instead of Ash.Type.embedded_type?(resource_or_type) since resources are not types anymore Step 22: handle struct + instance_of: Resource in unions Resources are not type anymore so they need to be passed this way in unions Step 23: ensure we only check GraphQL actions for pagination All reads are now paginated by default, so this triggered a compilation error Step 24: swap arguments for sort on calculations Step 25: remove unused debug? option
2024-04-02 07:03:06 +13:00
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
2024-04-23 01:32:16 +12:00
{:simple_sat, ">= 0.0.0", only: :test},
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false}
2020-05-02 04:32:56 +12:00
]
end
2020-08-14 09:39:59 +12:00
2020-08-26 07:33:11 +12:00
defp ash_version(default_version) do
case System.get_env("ASH_VERSION") do
nil -> default_version
"local" -> [path: "../ash"]
2022-05-21 04:28:02 +12:00
"main" -> [git: "https://github.com/ash-project/ash.git"]
2020-08-26 07:33:11 +12:00
version -> "~> #{version}"
end
end
2020-08-14 10:55:34 +12:00
defp aliases do
[
sobelow: "sobelow --skip",
credo: "credo --strict",
docs: [
"spark.cheat_sheets",
"docs",
"spark.replace_doc_links",
"spark.cheat_sheets_in_search"
],
improvement!: port AshGraphql to Ash 3.0 (#123) Step 1: update Ash Step 2: mass rename Api to Domain Step 3: Ash.Query.expr -> Ash.Expr.expr Also change ref interpolation Step 4: remove all warnings Step 5: remove registries from tests Step 6: fix filter Step 7: private? -> !public? Step 8: Ash.Calculation -> Ash.Resource.Calculation Step 9: use depend_on_resources/1 -> resources/1 Step 10: add Domain to all resources Step 11: use Ash module for all actions Step 12: add public? true all around Step 13: remove verbose? from options passed during Domain calls Step 14: add simple_sat Step 15: Ash.ErrorKind is no more, so remove code from errors Step 16: sprinkle default_accept :* around tests Step 17: replace Ash.Changeset.new/2 with Ash.Changeset.for_* Step 18: calculation fixups - Context is now a struct and arguments go under the arguments key - Function based calculations receive a list of records - Add a select to query-based loads - select -> load Step 19: pass the correct name to pass the policy in tests Step 20: Ash.Query.new/2 is no more Step 21: add AshGraphql.Resource.embedded? utility function Use that instead of Ash.Type.embedded_type?(resource_or_type) since resources are not types anymore Step 22: handle struct + instance_of: Resource in unions Resources are not type anymore so they need to be passed this way in unions Step 23: ensure we only check GraphQL actions for pagination All reads are now paginated by default, so this triggered a compilation error Step 24: swap arguments for sort on calculations Step 25: remove unused debug? option
2024-04-02 07:03:06 +13:00
"spark.formatter": "spark.formatter --extensions AshGraphql.Resource,AshGraphql.Domain",
"spark.cheat_sheets_in_search":
improvement!: port AshGraphql to Ash 3.0 (#123) Step 1: update Ash Step 2: mass rename Api to Domain Step 3: Ash.Query.expr -> Ash.Expr.expr Also change ref interpolation Step 4: remove all warnings Step 5: remove registries from tests Step 6: fix filter Step 7: private? -> !public? Step 8: Ash.Calculation -> Ash.Resource.Calculation Step 9: use depend_on_resources/1 -> resources/1 Step 10: add Domain to all resources Step 11: use Ash module for all actions Step 12: add public? true all around Step 13: remove verbose? from options passed during Domain calls Step 14: add simple_sat Step 15: Ash.ErrorKind is no more, so remove code from errors Step 16: sprinkle default_accept :* around tests Step 17: replace Ash.Changeset.new/2 with Ash.Changeset.for_* Step 18: calculation fixups - Context is now a struct and arguments go under the arguments key - Function based calculations receive a list of records - Add a select to query-based loads - select -> load Step 19: pass the correct name to pass the policy in tests Step 20: Ash.Query.new/2 is no more Step 21: add AshGraphql.Resource.embedded? utility function Use that instead of Ash.Type.embedded_type?(resource_or_type) since resources are not types anymore Step 22: handle struct + instance_of: Resource in unions Resources are not type anymore so they need to be passed this way in unions Step 23: ensure we only check GraphQL actions for pagination All reads are now paginated by default, so this triggered a compilation error Step 24: swap arguments for sort on calculations Step 25: remove unused debug? option
2024-04-02 07:03:06 +13:00
"spark.cheat_sheets_in_search --extensions AshGraphql.Resource,AshGraphql.Domain",
"spark.cheat_sheets":
"spark.cheat_sheets --extensions AshGraphql.Resource,AshGraphql.Domain"
2020-08-14 10:55:34 +12:00
]
end
end