ash v1.25.7 Ash.Type behaviour View Source
This behaviour is a superset of the Ecto.Type behavior, that also contains api level information, like what kinds of filters are allowed. Eventually, this may be used for composite types or serialization.
Much better to use Ash.Type
than to say @behaviour Ash.Type
and define
everything yourself.
Built in types
:map
-Ash.Type.Map
:term
-Ash.Type.Term
:atom
-Ash.Type.Atom
:string
-Ash.Type.String
:integer
-Ash.Type.Integer
:boolean
-Ash.Type.Boolean
:uuid
-Ash.Type.UUID
:date
-Ash.Type.Date
:utc_datetime
-Ash.Type.UtcDatetime
Composite Types
Currently, the only composite type supported is a list type, specified via:
{:array, Type}
. The constraints available are:
:items
- Constraints for the elements of the list. See the contained type's docs for more.:min_length
- A minimum length for the items:max_length
- A maximum length for the items:nil_items?
- Whether or not the list can contain nil items The default value istrue
.
Link to this section Summary
Functions
Confirms if a casted value matches the provided constraints.
Returns true if the value is a builtin type or adopts the Ash.Type
behaviour
Casts input (e.g. unknown) data to an instance of the type, or errors
Casts a value from the data store to an instance of the type, or errors
Casts a value from the Elixir type to a value that the data store can persist
Returns the ecto compatible type for an Ash.Type.
Determines if two values of a given type are equal.
Returns the underlying storage type (the underlying type of the ecto type of the ash type)
Link to this section Types
Link to this section Functions
Specs
apply_constraints(t(), term(), constraints()) :: :ok | {:error, String.t()}
Confirms if a casted value matches the provided constraints.
Specs
Returns true if the value is a builtin type or adopts the Ash.Type
behaviour
Specs
Casts input (e.g. unknown) data to an instance of the type, or errors
Maps to Ecto.Type.cast/2
Specs
Casts a value from the data store to an instance of the type, or errors
Maps to Ecto.Type.load/2
Specs
constraints(t()) :: constraints()
Specs
Casts a value from the Elixir type to a value that the data store can persist
Maps to Ecto.Type.dump/2
Specs
ecto_type(t()) :: Ecto.Type.t()
Returns the ecto compatible type for an Ash.Type.
If you use Ash.Type
, this is created for you. For builtin types
this may return a corresponding ecto builtin type (atom)
Specs
Determines if two values of a given type are equal.
Maps to Ecto.Type.equal?/3
Specs
Specs
storage_type(t()) :: Ecto.Type.t()
Returns the underlying storage type (the underlying type of the ecto type of the ash type)
Link to this section Callbacks
Specs
apply_constraints(term(), constraints()) :: :ok | {:error, constraint_error() | [constraint_error()]}
Specs
Specs
Specs
constraints() :: constraints()
Specs
describe(constraints()) :: String.t() | nil
Specs
Specs
ecto_type() :: Ecto.Type.t()
Specs
Specs
storage_type() :: Ecto.Type.t()