AshObjectIds

An extension for Ash for working with object IDs.

defmodule App.Blog.Post do
use Ash.Resource,
domain: App.Blog,
data_layer: Ash.DataLayer.AshPostgres
use AshObjectIds, prefix: "p", uuid_type: :uuid_v7
# .. data layer stuff
actions do
defaults([:read, :destroy, create: [:title], update: [:title]])
end
attributes do
# Defines an :id field that uses `App.Blog.Post.Id` as type.
object_id_primary_key()
attribute(:title, :string, public?: true)
# ... other attributes
end
end
# Example:
%Post{id: "p_Cd4XsS9R7QseqGnYf3eZb"} =
Post
|> Ash.Changeset.for_create(:create, %{title: "Hello world"})
|> Ash.create!()

For more detailed information, read the AshObjectIds moduledoc.