Ecto.Changeset.get_change

You're seeing just the function get_change, go back to Ecto.Changeset module for more information.
Link to this function

get_change(changeset, key, default \\ nil)

View Source

Specs

get_change(t(), atom(), term()) :: term()

Gets a change or returns a default value.

Examples

iex> changeset = change(%Post{body: "foo"}, %{title: "bar"})
iex> get_change(changeset, :title)
"bar"
iex> get_change(changeset, :body)
nil