defmodule AshGraphql.Resource.Info do @moduledoc "Introspection helpers for AshGraphql.Resource" alias Spark.Dsl.Extension @doc "The queries exposed for the resource" def queries(resource) do Extension.get_entities(resource, [:graphql, :queries]) end @doc "The mutations exposed for the resource" def mutations(resource) do Extension.get_entities(resource, [:graphql, :mutations]) || [] end @doc "Wether or not to encode the primary key as a single `id` field when reading and getting" def encode_primary_key?(resource) do Extension.get_opt(resource, [:graphql], :encode_primary_key?, true) end @doc "The managed_relationship configurations" def managed_relationships(resource) do Extension.get_entities(resource, [:graphql, :managed_relationships]) || [] end def managed_relationships_auto?(resource) do Extension.get_opt(resource, [:graphql, :managed_relationships], :auto?, false) end @doc "The managed_relationshi configuration for a given action/argument" def managed_relationship(resource, action, argument) do resource |> Extension.get_entities([:graphql, :managed_relationships]) |> List.wrap() |> Enum.find(fn managed_relationship -> managed_relationship.argument == argument.name and managed_relationship.action == action.name end) |> then(fn managed_relationship -> if managed_relationships_auto?(resource) do managed_relationship || default_managed_relationship(action, argument) else managed_relationship end end) end defp default_managed_relationship(action, argument) do if Enum.any?(Map.get(action, :changes, []), fn %{change: {Ash.Resource.Change.ManageRelationship, opts}} -> opts[:argument] == argument.name _ -> nil end) do %AshGraphql.Resource.ManagedRelationship{ argument: argument.name, action: action, types: [], type_name: nil, lookup_with_primary_key?: true, lookup_identities: [] } end end @doc "The graphql type of the resource" def type(resource) do Extension.get_opt(resource, [:graphql], :type, nil) end @doc "Wether or not to derive a filter input for the resource automatically" def derive_filter?(resource) do Extension.get_opt(resource, [:graphql], :derive_filter?, true) end @doc "Wether or not to derive a sort input for the resource automatically" def derive_sort?(resource) do Extension.get_opt(resource, [:graphql], :derive_sort?, true) end @doc "Graphql type overrides for the resource" def attribute_types(resource) do Extension.get_opt(resource, [:graphql], :attribute_types, []) end @doc "The field name to place the keyset of a result in" def keyset_field(resource) do Extension.get_opt(resource, [:graphql], :keyset_field, nil) end @doc "Graphql field name (attribute/relationship/calculation/arguments) overrides for the resource" def field_names(resource) do Extension.get_opt(resource, [:graphql], :field_names, []) end @doc "Fields to hide from the graphql api" def hide_fields(resource) do Extension.get_opt(resource, [:graphql], :hide_fields, []) end @doc "Wether or not a given field will be shown" def show_field?(resource, field) do field not in hide_fields(resource) end @doc "Which relationships should be included in the generated type" def relationships(resource) do Extension.get_opt(resource, [:graphql], :relationships, nil) || resource |> Ash.Resource.Info.public_relationships() |> Enum.map(& &1.name) end @doc "Graphql argument name overrides for the resource" def argument_names(resource) do Extension.get_opt(resource, [:graphql], :argument_names, []) end @doc "Graphql type overrides for the resource" def attribute_input_types(resource) do Extension.get_opt(resource, [:graphql], :attribute_input_types, []) end @doc "The delimiter for a resource with a composite primary key" def primary_key_delimiter(resource) do Extension.get_opt(resource, [:graphql], :primary_key_delimiter, nil) end @doc "Wether or not an object should be generated, or if one with the type name for this resource should be used." def generate_object?(resource) do Extension.get_opt(resource, [:graphql], :generate_object?, nil) end @doc "Fields that may be filtered on" def filterable_fields(resource) do Extension.get_opt(resource, [:graphql], :filterable_fields, nil) end @doc "May the specified field be filtered on?" def filterable_field?(resource, field) do filterable_fields = AshGraphql.Resource.Info.filterable_fields(resource) is_nil(filterable_fields) or field.name in filterable_fields end end