diff --git a/lib/ash/expr/expr.ex b/lib/ash/expr/expr.ex index 79cdb2b16..3966695be 100644 --- a/lib/ash/expr/expr.ex +++ b/lib/ash/expr/expr.ex @@ -205,10 +205,6 @@ defmodule Ash.Expr do end @doc false - def get_path(map, [key]) when is_struct(map) do - Map.get(map, key) - end - def get_path(map, [key]) when is_map(map) do Map.get(map, key) end diff --git a/lib/ash/query/function/parent.ex b/lib/ash/query/function/parent.ex index 3b4ea78fa..2b59d0322 100644 --- a/lib/ash/query/function/parent.ex +++ b/lib/ash/query/function/parent.ex @@ -1,6 +1,5 @@ defmodule Ash.Query.Parent do @moduledoc """ - true if the provided field is nil Used to access values from the "source" of a given expression. This is used in cases where expressions are given for some relationship path, for example:any()