例如,我想在以下Absinthe架构中调用前端的inserted_on
时间戳created_at
:
defmodule MyAppWeb.Schema.AccountTypes do
use Absinthe.Schema.Notation
object :user do
field :id, :id
field :email, :string
field :inserted_on, :datetime
end
end
但我不确定如何设置Ecto< - >苦艾映射。我应该只为我的Ecto架构添加一个虚拟字段吗?
答案 0 :(得分:0)
一个选项是在数据库字段的Ecto模式中使用:source选项,因此您可以使用自己的内部名称:
defmodule MyAppWeb.Schema.AccountTypes do
use Absinthe.Schema.Notation
object :user do
field :id, :id
field :email, :string
field :created_at, :datetime, source: :inserted_on
end
end
但最好的选择可能是在查询宏中设置正确的字段名称:
defmodule My.Schema do
use Absinthe.Schema
query do
field :created_at, :string do
resolve &MyResolver.inserted_on/3
end
end
..或使用您自己的数据类型而不是字符串..