Gigitsu
Hi everyone ![]()
I’m trying to improve the typespecs in my application contexts, but I’m running into dialyzer errors when dealing with schemas that have fields that can be nil.
Here’s an example:
defmodule MyApp.User do
use Ecto.Schema
import Ecto.Changeset
@type t :: %__MODULE__{
id: integer(),
email: String.t(),
age: non_neg_integer()
}
schema "users" do
field :email, :string
field :age, :integer
end
def changeset(user, attrs) do
user |> cast(attrs, [:email, :age]) |> validate_required(:email)
end
end
defmodule MyApp.UsersContext do
alias MyApp.User
@spec change_user(user :: User.t(), attrs :: map()) :: Ecto.Changeset.t()
def change_user(%User{} = user, attrs \\ %{}) do
User.changeset(user, attrs)
end
end
defmodule MyApp.FakeController do
alias MyApp.User
def index() do
MyApp.UsersContext.change_user(%User{}, %{})
:ok
end
end
In this schema, there are no default values so %User{} will generate a struct where every field is nil.
Using this setup, dialyzer complains with:
The function call will not succeed.
MyApp.UsersContext.change_user(
%MyApp.User{
:__meta__ => %Ecto.Schema.Metadata{
:context => nil,
:prefix => nil,
:schema => MyApp.User,
:source => <<117, 115, 101, 114, 115>>,
:state => :built
},
:age => nil,
:email => nil,
:id => nil
},
%{}
)
breaks the contract
(user :: MyApp.User.t(), attrs :: map()) :: Ecto.Changeset.t()
To fix this error I have to explicitly put | nil in MyApp.User.t() type:
@type t :: %__MODULE__{
id: integer() | nil,
email: String.t() | nil,
age: non_neg_integer() | nil
}
But here are some things I’m unsure about:
- Is it idiomatic to be so explicit with
| nilfor every nullable field? - Is there a better or preferred way to declare the schema type (
@type t) that keeps it maintainable and readable, especially in large schemas?
Another possible solution I’ve found is to declare, somewhere in the codebase, a generic schema typespec:
@type schema_t(schema) :: %{
optional(atom) => any,
__struct__: schema,
__meta__: Ecto.Schema.Metadata.t(schema)
}
and use it in my specs:
@spec change_user(user :: schema_t(User), attrs :: map()) :: Ecto.Changeset.t()
Curious how others approach this.
Thanks!
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
The short answer is yes.
integer()is simply different frominteger() | nil. Your code is using%User{}which absolutely does not have anidvalue yet, it hasn’t been saved to the DB, so it isn’t valid to claim it has an integer id in all cases.If you had code which did
user.id + 10that’s going to raise an exception, and you WANT dialyzer to give you heads up about such things.billylanchantin
There’s also the
TypedEctoSchemalibrary:It auto-generates the typespec boiler plate for your Ecto schemas. It has sensible defaults, and you can use
::inline to override the typespec for a specific fields.Gigitsu
@benwilson512 so being explicit is the only option here. I was hoping there’d be a shortcut for defining nullable fields. Thanks!
@billylanchantin thank you for the answer. I’ve seen some libraries (like the one you provided) used to help with this, but I’m trying to keep things vanilla Ecto if possible.
dogweather
TypedEctoSchema and TypedStruct are life-savers. They eliminate unnecessary verbosity and make schema definitions readable.
zorn
In some of my recent projects, I’ve preferred to model the schema type to be a description of a
repo-sourced value, thus allowing me to type things likeinserted_at: DateTime.t()instead ofinserted_at: DateTime.t() | nil.To allow for some functions which expected a non-repo-sourced value I would make a
@type struct_t() :: %__MODULE__{}.https://github.com/zorn/dustoff/blob/c0b45d8db2fceb36eeeff65e874e3ff95e6655ad/lib/dustoff/accounts/user_token.ex#L23-L41
I can’t say I observe many other Elixir codebases doing this, and my quick round-the-room check with some other devs says this nuance was not on their radar.
Gigitsu
I like this approach, and your
struct_tresembles my idea of aschema_ttype, though with less enforcement. Thank you.I agree. I once wrote a
typed_schemamacro myself, but it started to feel like it was adding unnecessary complexity and non-standard conventions on top of Ecto, so I went back to manually crafted typespecs.