You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a request for supporting associations and resolvers. Something like following:
defmodule Person do
use Dlex.Node
@derive {Phoenix.Param, key: :uid}
import Ecto.Changeset
schema "persons" do
field :name, :string
field :age, :integer
field :works_at, :uid, model: Company
field :company_count, :integer, virtual: true, resolve: "count(works_at)"
end
...
Thanks,
Gorav
The text was updated successfully, but these errors were encountered:
Hi,
This is a request for supporting associations and resolvers. Something like following:
Thanks,
Gorav
The text was updated successfully, but these errors were encountered: